Skip to content

Commit

Permalink
pythongh-102613: Bump recursion limit to fix running test_pathlib und…
Browse files Browse the repository at this point in the history
…er Coverage (python#105744)
  • Loading branch information
ambv authored Jun 13, 2023
1 parent be2779c commit 4e80082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_pathlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -2107,7 +2107,7 @@ def test_glob_long_symlink(self):
self.assertEqual(sorted(base.glob('**/*')), [bad_link])

def test_glob_above_recursion_limit(self):
recursion_limit = 40
recursion_limit = 50
# directory_depth > recursion_limit
directory_depth = recursion_limit + 10
base = pathlib.Path(os_helper.TESTFN, 'deep')
Expand Down

0 comments on commit 4e80082

Please sign in to comment.