summaryrefslogtreecommitdiff
path: root/Lib/distutils/tests/test_log.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-09-13 10:49:53 +0300
committerGitHub <noreply@github.com>2021-09-13 10:49:53 +0300
commit851811f5772c43f72f445e2ce1ac3ea9da951ae3 (patch)
tree4178e52377f5bfd4f9e94dc5261eb0a6e05ef6cc /Lib/distutils/tests/test_log.py
parentc78d5ca3806d02e26f9f3fa92ff567f0805eac4c (diff)
downloadcpython-git-851811f5772c43f72f445e2ce1ac3ea9da951ae3.tar.gz
bpo-5846: Do not use obsolete unittest functions. (GH-28303)
Get rid of use of makeSuite() and findTestCases(). Also make test_math and test_threading_local discoverable.
Diffstat (limited to 'Lib/distutils/tests/test_log.py')
-rw-r--r--Lib/distutils/tests/test_log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_log.py b/Lib/distutils/tests/test_log.py
index 75cf900617..ec2ae028de 100644
--- a/Lib/distutils/tests/test_log.py
+++ b/Lib/distutils/tests/test_log.py
@@ -40,7 +40,7 @@ class TestLog(unittest.TestCase):
'Fαtal\t\\xc8rr\\u014dr')
def test_suite():
- return unittest.makeSuite(TestLog)
+ return unittest.TestLoader().loadTestsFromTestCase(TestLog)
if __name__ == "__main__":
run_unittest(test_suite())