summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_json.py
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-11-30 03:03:30 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-11-30 03:03:30 (GMT)
commitff27ee0b400030419cfd3c9966f275bfbcb569f8 (patch)
treec2e45325768bd5256432667c387f304d549493e6 /Lib/test/test_json.py
parent69b34bfe9c3e5da1d7336a607ab56f1c3a178dca (diff)
downloadcpython-ff27ee0b400030419cfd3c9966f275bfbcb569f8.zip
cpython-ff27ee0b400030419cfd3c9966f275bfbcb569f8.tar.gz
cpython-ff27ee0b400030419cfd3c9966f275bfbcb569f8.tar.bz2
Issue #10572: Moved json tests to Lib/test/json_tests.
Approved by Raymond Hettinger.
Diffstat (limited to 'Lib/test/test_json.py')
-rw-r--r--Lib/test/test_json.py4
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__":