summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2023-09-05 13:46:17 (GMT)
committerGitHub <noreply@github.com>2023-09-05 13:46:17 (GMT)
commiteaabaac7c099884f92428a7bb04ffa1f1d6080dd (patch)
tree7618dc1bc304aa563adb904166c790fc7a9f1961 /Lib
parent420c63621918d65ba362686b29495868f087281a (diff)
downloadcpython-eaabaac7c099884f92428a7bb04ffa1f1d6080dd.zip
cpython-eaabaac7c099884f92428a7bb04ffa1f1d6080dd.tar.gz
cpython-eaabaac7c099884f92428a7bb04ffa1f1d6080dd.tar.bz2
gh-89392: Use normal unittest runner in test_type_cache (GH-108911)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_type_cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_type_cache.py b/Lib/test/test_type_cache.py
index 24f83cd..72587ec 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()