commit | ff27ee0b400030419cfd3c9966f275bfbcb569f8 | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Tue Nov 30 03:03:30 2010 +0000 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Tue Nov 30 03:03:30 2010 +0000 |
tree | c2e45325768bd5256432667c387f304d549493e6 | |
parent | 69b34bfe9c3e5da1d7336a607ab56f1c3a178dca [diff] [blame] |
Issue #10572: Moved json tests to Lib/test/json_tests. Approved by Raymond Hettinger.
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 @@ 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__":