diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-01-20 01:44:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-20 01:44:21 (GMT) |
commit | a6a088548063226233c08b8d35dde130746fdd10 (patch) | |
tree | f61ce938a92fa94f4923597a7259ef767b4284d4 /Lib/test/test_distutils.py | |
parent | 07b12fdf5545a20e0fb7be9d6ad35344337e00ae (diff) | |
download | cpython-a6a088548063226233c08b8d35dde130746fdd10.zip cpython-a6a088548063226233c08b8d35dde130746fdd10.tar.gz cpython-a6a088548063226233c08b8d35dde130746fdd10.tar.bz2 |
[3.10] bpo-46425: Fix direct invocation of multiple test modules (GH-30666) (GH-30699)
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 4b40af0..d82d2b6 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 |