diff options
Diffstat (limited to 'test/run_suite.py')
-rwxr-xr-x | test/run_suite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_suite.py b/test/run_suite.py index cee9d88e..16e527af 100755 --- a/test/run_suite.py +++ b/test/run_suite.py @@ -41,7 +41,7 @@ def run_eval_test(command, in_path, good_path, out_path): """Run a positive eval test and return whether the output matches.""" syntax = util.syntax_from_path(out_path) - command = command + ["-o", syntax, "-w", out_path, in_path] + command = command + ["-O", syntax, "-w", out_path, in_path] subprocess.check_call(command, encoding="utf-8") with open(good_path, "r", encoding="utf-8") as good: |