Skip to content

Commit 4e80082

Browse files
authored
gh-102613: Bump recursion limit to fix running test_pathlib under Coverage (#105744)
1 parent be2779c commit 4e80082

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_pathlib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2107,7 +2107,7 @@ def test_glob_long_symlink(self):
21072107
self.assertEqual(sorted(base.glob('**/*')), [bad_link])
21082108

21092109
def test_glob_above_recursion_limit(self):
2110-
recursion_limit = 40
2110+
recursion_limit = 50
21112111
# directory_depth > recursion_limit
21122112
directory_depth = recursion_limit + 10
21132113
base = pathlib.Path(os_helper.TESTFN, 'deep')

0 commit comments

Comments
 (0)