Skip to content

Commit 530af52

Browse files
ambvmiss-islington
authored andcommitted
pythongh-102613: Bump recursion limit to fix running test_pathlib under Coverage (pythonGH-105744)
(cherry picked from commit 4e80082) Co-authored-by: Łukasz Langa <[email protected]>
1 parent c3a2cbb commit 530af52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_pathlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1985,7 +1985,7 @@ def test_glob_long_symlink(self):
19851985
self.assertEqual(sorted(base.glob('**/*')), [bad_link])
19861986

19871987
def test_glob_above_recursion_limit(self):
1988-
recursion_limit = 40
1988+
recursion_limit = 50
19891989
# directory_depth > recursion_limit
19901990
directory_depth = recursion_limit + 10
19911991
base = pathlib.Path(os_helper.TESTFN, 'deep')

0 commit comments

Comments
 (0)