summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_json/__init__.py
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2020-07-06 09:12:49 (GMT)
committerGitHub <noreply@github.com>2020-07-06 09:12:49 (GMT)
commit883bc638335a57a6e6a6344c2fc132c4f9a0ec42 (patch)
tree1dd74a4aeeb80d8b85ff18de700763199a7bc1bc /Lib/test/test_json/__init__.py
parent9ce8132e1f2339cfe116dfd4795574182c2245b4 (diff)
downloadcpython-883bc638335a57a6e6a6344c2fc132c4f9a0ec42.zip
cpython-883bc638335a57a6e6a6344c2fc132c4f9a0ec42.tar.gz
cpython-883bc638335a57a6e6a6344c2fc132c4f9a0ec42.tar.bz2
bpo-40275: Use new test.support helper submodules in tests (GH-21314)
Diffstat (limited to 'Lib/test/test_json/__init__.py')
-rw-r--r--Lib/test/test_json/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/test_json/__init__.py b/Lib/test/test_json/__init__.py
index bac370d..74b64ed 100644
--- a/Lib/test/test_json/__init__.py
+++ b/Lib/test/test_json/__init__.py
@@ -4,10 +4,12 @@ import doctest
import unittest
from test import support
+from test.support import import_helper
+
# import json with and without accelerations
-cjson = support.import_fresh_module('json', fresh=['_json'])
-pyjson = support.import_fresh_module('json', blocked=['_json'])
+cjson = import_helper.import_fresh_module('json', fresh=['_json'])
+pyjson = import_helper.import_fresh_module('json', blocked=['_json'])
# JSONDecodeError is cached inside the _json module
cjson.JSONDecodeError = cjson.decoder.JSONDecodeError = json.JSONDecodeError