From e2f9b0e6fd01c4ad8d7fc966a531e48e5aaa334f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 14 Aug 2018 16:50:53 -0400 Subject: First pass at HTTP imports Implement --reload Integrate hyper errors into DenoError In collaboration with Tommy Savaria --- tools/check_output_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/check_output_test.py') diff --git a/tools/check_output_test.py b/tools/check_output_test.py index 54aff4e0c..baeff23bf 100755 --- a/tools/check_output_test.py +++ b/tools/check_output_test.py @@ -26,7 +26,7 @@ def check_output_test(deno_exe_filename): out_abs = os.path.join(tests_path, out_filename) with open(out_abs, 'r') as f: expected_out = f.read() - cmd = [deno_exe_filename, script_abs] + cmd = [deno_exe_filename, script_abs, "--reload"] expected_code = parse_exit_code(script) print " ".join(cmd) actual_code = 0 -- cgit v1.2.3