Issue #25860: Fixed test failure caused by inconsistency of os.walk() and
os.fwalk() parameter names.
This commit is contained in:
parent
0bddc9eb15
commit
a17ca19d34
|
@ -792,6 +792,8 @@ class WalkTests(unittest.TestCase):
|
||||||
# Wrapper to hide minor differences between os.walk and os.fwalk
|
# Wrapper to hide minor differences between os.walk and os.fwalk
|
||||||
# to tests both functions with the same code base
|
# to tests both functions with the same code base
|
||||||
def walk(self, directory, **kwargs):
|
def walk(self, directory, **kwargs):
|
||||||
|
if 'follow_symlinks' in kwargs:
|
||||||
|
kwargs['followlinks'] = kwargs.pop('follow_symlinks')
|
||||||
return os.walk(directory, **kwargs)
|
return os.walk(directory, **kwargs)
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
|
Loading…
Reference in New Issue