mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-102613: Bump recursion limit to fix running test_pathlib under Coverage (#105744)
This commit is contained in:
parent
be2779c0cb
commit
4e80082723
1 changed files with 1 additions and 1 deletions
|
@ -2107,7 +2107,7 @@ class _BasePathTest(object):
|
|||
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')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue