summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_free_threading/test_type.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_free_threading/test_type.py b/Lib/test/test_free_threading/test_type.py
index 1e84b2d..29ca929 100644
--- a/Lib/test/test_free_threading/test_type.py
+++ b/Lib/test/test_free_threading/test_type.py
@@ -106,7 +106,7 @@ class TestType(TestCase):
thing = Foo()
def work():
foo = thing
- for _ in range(10000):
+ for _ in range(5000):
foo.__class__ = Bar
type(foo)
foo.__class__ = Foo