diff options
Diffstat (limited to 'tools/benchmark_test.py')
-rwxr-xr-x | tools/benchmark_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/benchmark_test.py b/tools/benchmark_test.py index 92eb6d5ee..a49db7b74 100755 --- a/tools/benchmark_test.py +++ b/tools/benchmark_test.py @@ -4,7 +4,7 @@ import sys import os import benchmark import unittest -from util import DenoTestCase, test_main +from test_util import DenoTestCase, run_tests class TestBenchmark(DenoTestCase): @@ -56,4 +56,4 @@ class TestBenchmark(DenoTestCase): if __name__ == '__main__': # FIME this doesn't appear to be the case. # This test assumes tools/http_server.py is running in the background. - test_main() + run_tests() |