Skip to content

Commit a0da94d

Browse files
committed
Fixed test failures on Python 3.14
Fixes #148.
1 parent 77fba8a commit a0da94d

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
@@ -374,7 +374,7 @@ def test_basics_split_by_predicate__match(self):
374374
class DeepRecursionInSplitAndSubgroup(unittest.TestCase):
375375
def make_deep_eg(self):
376376
e = TypeError(1)
377-
for _ in range(10000):
377+
for _ in range(150_000):
378378
e = ExceptionGroup("eg", [e])
379379
return e
380380

0 commit comments

Comments
 (0)