diff options
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") |