diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-01-18 22:28:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 21:28:18 +0200 |
commit | 1292aa6db5bed889a3c87df443754fcae0177801 (patch) | |
tree | 131eec842d87333ea97fcb90cb58764ac4652c56 /Lib/test/test_distutils.py | |
parent | ff7703c4b609a697ada8165fd1c52a73404b6d07 (diff) | |
download | cpython-1292aa6db5bed889a3c87df443754fcae0177801.tar.gz cpython-1292aa6db5bed889a3c87df443754fcae0177801.zip |
bpo-46425: Fix direct invocation of multiple test modules (GH-30666)
Diffstat (limited to 'Lib/test/test_distutils.py')
-rw-r--r-- | Lib/test/test_distutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_distutils.py b/Lib/test/test_distutils.py index 4b40af02132..d82d2b64234 100644 --- a/Lib/test/test_distutils.py +++ b/Lib/test/test_distutils.py @@ -5,7 +5,7 @@ the test_suite() function there returns a test suite that's ready to be run. """ -import warnings +import unittest from test import support from test.support import warnings_helper |