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 (pythonGH-105744)

(cherry picked from commit 4e80082)

Co-authored-by: Łukasz Langa <lukasz@langa.pl>
  • Loading branch information
ambv authored and miss-islington committed Jun 13, 2023
1 parent c3a2cbb commit 530af52
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 @@ -1985,7 +1985,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 530af52

Please sign in to comment.