From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 8 Sep 2023 13:16:55 +0000 (-0700) Subject: [3.12] gh-89392: Use normal unittest runner in test_type_cache (GH-108911) (#108913) X-Git-Tag: v3.12.0rc3~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da02508a0e25cb2505950d960f105a3523c60530;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-89392: Use normal unittest runner in test_type_cache (GH-108911) (#108913) gh-89392: Use normal unittest runner in test_type_cache (GH-108911) (cherry picked from commit eaabaac7c099884f92428a7bb04ffa1f1d6080dd) Co-authored-by: Serhiy Storchaka --- diff --git a/Lib/test/test_type_cache.py b/Lib/test/test_type_cache.py index 24f83cd3e172..72587ecc11b6 100644 --- a/Lib/test/test_type_cache.py +++ b/Lib/test/test_type_cache.py @@ -58,4 +58,4 @@ class TypeCacheTests(unittest.TestCase): if __name__ == "__main__": - support.run_unittest(TypeCacheTests) + unittest.main()