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/util.py | |
parent | e8df66c12cbb3e51f8776aa91e6db41bbfdcae5e (diff) |
Remove //tests symlink (#3849)
Diffstat (limited to 'tools/util.py')
-rw-r--r-- | tools/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/util.py b/tools/util.py index c54158f9b..d49af71ce 100644 --- a/tools/util.py +++ b/tools/util.py @@ -21,7 +21,7 @@ executable_suffix = ".exe" if os.name == "nt" else "" root_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) libdeno_path = os.path.join(root_path, "core", "libdeno") -tests_path = os.path.join(root_path, "tests") +tests_path = os.path.join(root_path, "cli/tests") third_party_path = os.path.join(root_path, "third_party") |