diff options
-rw-r--r-- | Lib/test/test_os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 66f5634..874f9e4 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. |