Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes.

Patch by Aviv Palivoda.
This commit is contained in:
Serhiy Storchaka 2016-04-16 17:51:17 +03:00
commit 9e9235511e
1 changed files with 1 additions and 1 deletions

View File

@ -857,7 +857,7 @@ class WalkTests(unittest.TestCase):
def test_walk_topdown(self):
# Walk top-down.
all = list(os.walk(self.walk_path))
all = list(self.walk(self.walk_path))
self.assertEqual(len(all), 4)
# We can't know which order SUB1 and SUB2 will appear in.