diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-08-04 23:53:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 17:53:12 +0200 |
commit | c7decc27d529c04a4e6b2922e3f3f9419b920f63 (patch) | |
tree | 9bcb971af68ed2e08f4aa4001412d38520194cff /Lib/test/test_importlib/test_spec.py | |
parent | 604bba1f8fe32479c89b9824b2231cc4480dd110 (diff) | |
download | cpython-c7decc27d529c04a4e6b2922e3f3f9419b920f63.tar.gz cpython-c7decc27d529c04a4e6b2922e3f3f9419b920f63.zip |
bpo-40275: Use new test.support helper submodules in tests (GH-21727)
Diffstat (limited to 'Lib/test/test_importlib/test_spec.py')
-rw-r--r-- | Lib/test/test_importlib/test_spec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_spec.py b/Lib/test/test_importlib/test_spec.py index 20dacec8664..eed90f29f92 100644 --- a/Lib/test/test_importlib/test_spec.py +++ b/Lib/test/test_importlib/test_spec.py @@ -6,7 +6,7 @@ util = test_util.import_importlib('importlib.util') import os.path import pathlib -from test.support import CleanImport +from test.support.import_helper import CleanImport import unittest import sys import warnings |