]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-89392: Use normal unittest runner in test_type_cache (GH-108911) (#108913)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 8 Sep 2023 13:16:55 +0000 (06:16 -0700)
committerGitHub <noreply@github.com>
Fri, 8 Sep 2023 13:16:55 +0000 (15:16 +0200)
gh-89392: Use normal unittest runner in test_type_cache (GH-108911)
(cherry picked from commit eaabaac7c099884f92428a7bb04ffa1f1d6080dd)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Lib/test/test_type_cache.py

index 24f83cd3e172c78d0f0b1c09019be093c743cd0b..72587ecc11b6f37d232fe45b5dcf36c7494fbe2a 100644 (file)
@@ -58,4 +58,4 @@ class TypeCacheTests(unittest.TestCase):
 
 
 if __name__ == "__main__":
-    support.run_unittest(TypeCacheTests)
+    unittest.main()