diff options
Diffstat (limited to 'tools/prefetch_test.py')
-rwxr-xr-x | tools/prefetch_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/prefetch_test.py b/tools/prefetch_test.py index 3024aedf3..9c671dc00 100755 --- a/tools/prefetch_test.py +++ b/tools/prefetch_test.py @@ -13,7 +13,7 @@ def prefetch_test(deno_exe): deno_dir = mkdtemp() try: t = os.path.join(tests_path, "006_url_imports.ts") - output = run_output([deno_exe, "--prefetch", t], + output = run_output([deno_exe, "prefetch", t], merge_env={"DENO_DIR": deno_dir}) assert output == "" # Check that we actually did the prefetch. |