diff options
Diffstat (limited to 'Lib/test/test_json.py')
-rw-r--r-- | Lib/test/test_json.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_json.py b/Lib/test/test_json.py index a4b6e7a..41ff897 100644 --- a/Lib/test/test_json.py +++ b/Lib/test/test_json.py @@ -5,12 +5,12 @@ the test_suite() function there returns a test suite that's ready to be run. """ -import json.tests +from test import json_tests import test.support def test_main(): - test.support.run_unittest(json.tests.test_suite()) + test.support.run_unittest(json_tests.test_suite()) if __name__ == "__main__": |