summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_api.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2022-01-22 16:05:05 (GMT)
committerGitHub <noreply@github.com>2022-01-22 16:05:05 (GMT)
commit57316c52bae5d6420f5067f3891ec328deb97305 (patch)
treeb044c0085ff11dc47950562818150077536c324c /Lib/test/test_importlib/test_api.py
parent55f4ec460ee6dcffc26180fd982ad89083c9acb1 (diff)
downloadcpython-57316c52bae5d6420f5067f3891ec328deb97305.zip
cpython-57316c52bae5d6420f5067f3891ec328deb97305.tar.gz
cpython-57316c52bae5d6420f5067f3891ec328deb97305.tar.bz2
bpo-46425: fix direct invocation of `test_importlib` (GH-30682)
Diffstat (limited to 'Lib/test/test_importlib/test_api.py')
-rw-r--r--Lib/test/test_importlib/test_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_api.py b/Lib/test/test_importlib/test_api.py
index 763b2ad..1f8f7c0 100644
--- a/Lib/test/test_importlib/test_api.py
+++ b/Lib/test/test_importlib/test_api.py
@@ -1,4 +1,4 @@
-from . import util as test_util
+from test.test_importlib import util as test_util
init = test_util.import_importlib('importlib')
util = test_util.import_importlib('importlib.util')