Skip to content

Commit af3c692

Browse files
committed
Increase the threshold for the GC fast cycle test.
1 parent 4cd1076 commit af3c692

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_gc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@ def make_ll(depth):
11721172
olds.append(newhead)
11731173
if len(olds) == 20:
11741174
new_objects = _testinternalcapi.get_heap_size() - initial_heap_size
1175-
self.assertLess(new_objects, 25_000)
1175+
self.assertLess(new_objects, 26_000)
11761176
del olds[:]
11771177
if not enabled:
11781178
gc.disable()

0 commit comments

Comments
 (0)