diff options
Diffstat (limited to 'tools/repl_test.py')
-rw-r--r-- | tools/repl_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/repl_test.py b/tools/repl_test.py index 59346d3e8..9ea1b82af 100644 --- a/tools/repl_test.py +++ b/tools/repl_test.py @@ -19,7 +19,7 @@ class Repl(object): def input(self, *lines, **kwargs): exit_ = kwargs.pop("exit", True) sleep_ = kwargs.pop("sleep", 0) - p = Popen([self.deno_exe, "-A"], stdout=PIPE, stderr=PIPE, stdin=PIPE) + p = Popen([self.deno_exe], stdout=PIPE, stderr=PIPE, stdin=PIPE) try: # Note: The repl takes a >100ms until it's ready. time.sleep(sleep_) |