summaryrefslogtreecommitdiff
path: root/tools/deno_dir_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/deno_dir_test.py')
-rwxr-xr-xtools/deno_dir_test.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/deno_dir_test.py b/tools/deno_dir_test.py
index 7133d02d7..052516d0e 100755
--- a/tools/deno_dir_test.py
+++ b/tools/deno_dir_test.py
@@ -3,10 +3,9 @@
# Check deno dir is created properly
# Usage: deno_dir_test.py [path to deno dir]
import os
-import subprocess
-import sys
-from util import DenoTestCase, mkdtemp, rmtree, run, test_main
+from test_util import DenoTestCase, run_tests
+from util import mkdtemp, rmtree, run
class TestDenoDir(DenoTestCase):
@@ -43,4 +42,4 @@ class TestDenoDir(DenoTestCase):
if __name__ == '__main__':
- test_main()
+ run_tests()