From: Serhiy Storchaka Date: Sat, 16 Apr 2016 14:51:00 +0000 (+0300) Subject: Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes. X-Git-Tag: v3.6.0a1~190^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a07ab29a79755191ed6c507247d359e50084dcf4;p=thirdparty%2FPython%2Fcpython.git Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes. Patch by Aviv Palivoda. --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 66f563465fe3..874f9e4c9098 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.