From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 5 Sep 2023 14:11:49 +0000 (-0700) Subject: [3.11] gh-89392: Use normal unittest runner in test_type_cache (GH-108911) (GH-108914) X-Git-Tag: v3.11.6~143 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e2404f5ed9d1e3e4c5b4616ce94a6bd8ddcfa9e4;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-89392: Use normal unittest runner in test_type_cache (GH-108911) (GH-108914) (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 8502f6b0584b..9dc91dc93448 100644 --- a/Lib/test/test_type_cache.py +++ b/Lib/test/test_type_cache.py @@ -44,4 +44,4 @@ class TypeCacheTests(unittest.TestCase): if __name__ == "__main__": - support.run_unittest(TypeCacheTests) + unittest.main()