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:00 +03:00
parent e38415e776
commit a07ab29a79

View file

@ -843,7 +843,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.