8000 Increase threshold to 27k. · python/cpython@9d5a064 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9d5a064

Browse files
committed
Increase threshold to 27k.
1 parent af3c692 commit 9d5a064

File tree

1 file changed

+1
-1
lines cha BE91 nged

1 file changed

+1
-1
lines changed

Lib/test/test_gc.py

Lines changed: 1 addition & 1 deletion
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, 26_000)
1175+
self.assertLess(new_objects, 27_000)
11761176
del olds[:]
11771177
if not enabled:
11781178
gc.disable()

0 commit comments

Comments
 (0)
0