diff options
author | Luka Hartwig <mail@lukahartwig.de> | 2020-02-02 22:55:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-02 16:55:22 -0500 |
commit | f168597b7ab81afda3bf4749a81c360d364e7cf1 (patch) | |
tree | 4082e9eebf03cc7b3b653822c52a54a62e308d15 /tools/deno_dir_test.py | |
parent | e8df66c12cbb3e51f8776aa91e6db41bbfdcae5e (diff) |
Remove //tests symlink (#3849)
Diffstat (limited to 'tools/deno_dir_test.py')
-rwxr-xr-x | tools/deno_dir_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/deno_dir_test.py b/tools/deno_dir_test.py index c8f98bad1..9e11b8e3b 100755 --- a/tools/deno_dir_test.py +++ b/tools/deno_dir_test.py @@ -40,7 +40,7 @@ class TestDenoDir(DenoTestCase): def run_deno(self, deno_dir=None): cmd = [ self.deno_exe, "run", - "http://localhost:4545/tests/subdir/print_hello.ts" + "http://localhost:4545/cli/tests/subdir/print_hello.ts" ] deno_dir_env = {"DENO_DIR": deno_dir} if deno_dir is not None else None res = run_output(cmd, quiet=True, env=deno_dir_env) |