diff options
Diffstat (limited to 'tools/is_tty_test.py')
-rwxr-xr-x | tools/is_tty_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/is_tty_test.py b/tools/is_tty_test.py index 867fd7a1c..6f7509a8c 100755 --- a/tools/is_tty_test.py +++ b/tools/is_tty_test.py @@ -12,7 +12,7 @@ IS_TTY_TEST_TS = "tests/is_tty.ts" def is_tty_test(deno_exe): - cmd = [deno_exe, IS_TTY_TEST_TS] + cmd = [deno_exe, "run", IS_TTY_TEST_TS] code, stdout, _ = tty_capture(cmd, b'') assert code == 0 assert str(stdin.isatty()).lower() in stdout |