From a07ab29a79755191ed6c507247d359e50084dcf4 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sat, 16 Apr 2016 17:51:00 +0300 Subject: [PATCH] Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes. Patch by Aviv Palivoda. --- Lib/test/test_os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 66f563465fe..874f9e4c909 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -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.