Skip to content

Commit 4639b1e

Browse files
committed
Fixed test failure on Python 3.12.3
It seems that the recursion limit was upgraded in 3.12.3.
1 parent 684b79a commit 4639b1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ def test_basics_split_by_predicate__match(self):
373373
class DeepRecursionInSplitAndSubgroup(unittest.TestCase):
374374
def make_deep_eg(self):
375375
e = TypeError(1)
376-
for _ in range(2000):
376+
for _ in range(10000):
377377
e = ExceptionGroup("eg", [e])
378378
return e
379379

0 commit comments

Comments
 (0)