diff options
Diffstat (limited to 'tools/unit_tests.py')
-rwxr-xr-x | tools/unit_tests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/unit_tests.py b/tools/unit_tests.py index 439ea325f..f8cd1af64 100755 --- a/tools/unit_tests.py +++ b/tools/unit_tests.py @@ -3,8 +3,8 @@ import sys import subprocess -from http_server import spawn -from util import DenoTestCase, test_main +import http_server +from test_util import DenoTestCase, run_tests class JsUnitTests(DenoTestCase): @@ -24,5 +24,5 @@ class JsUnitTests(DenoTestCase): if __name__ == '__main__': - with spawn(): - test_main() + with http_server.spawn(): + run_tests() |