diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-08-04 00:49:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 18:49:18 +0200 |
commit | 4660597b51b3d14ce6269d0ed865ab7e22c6ae1f (patch) | |
tree | 00ab23106abb1d0023e261685dc4f2077002aabd /Lib/test/test_asyncgen.py | |
parent | bb0424b122e3d222a558bd4177ce37befd3e0347 (diff) | |
download | cpython-git-4660597b51b3d14ce6269d0ed865ab7e22c6ae1f.tar.gz |
bpo-40275: Use new test.support helper submodules in tests (GH-21448)
Diffstat (limited to 'Lib/test/test_asyncgen.py')
-rw-r--r-- | Lib/test/test_asyncgen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncgen.py b/Lib/test/test_asyncgen.py index 62bf877416..1f7e05b42b 100644 --- a/Lib/test/test_asyncgen.py +++ b/Lib/test/test_asyncgen.py @@ -2,7 +2,7 @@ import inspect import types import unittest -from test.support import import_module +from test.support.import_helper import import_module asyncio = import_module("asyncio") |