mirror of
https://github.com/python/cpython.git
synced 2025-09-01 06:28:36 +00:00
Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes.
Patch by Aviv Palivoda.
This commit is contained in:
parent
e38415e776
commit
a07ab29a79
1 changed files with 1 additions and 1 deletions
|
@ -843,7 +843,7 @@ class WalkTests(unittest.TestCase):
|
||||||
|
|
||||||
def test_walk_topdown(self):
|
def test_walk_topdown(self):
|
||||||
# Walk top-down.
|
# Walk top-down.
|
||||||
all = list(os.walk(self.walk_path))
|
all = list(self.walk(self.walk_path))
|
||||||
|
|
||||||
self.assertEqual(len(all), 4)
|
self.assertEqual(len(all), 4)
|
||||||
# We can't know which order SUB1 and SUB2 will appear in.
|
# We can't know which order SUB1 and SUB2 will appear in.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue