diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-16 14:51:00 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-16 14:51:00 (GMT) |
commit | a07ab29a79755191ed6c507247d359e50084dcf4 (patch) | |
tree | 604166ce256e5b9eac533526d78203f513257c89 /Lib/test | |
parent | e38415e776341208b345d260e1ca5c5a5dd58fc6 (diff) | |
download | cpython-a07ab29a79755191ed6c507247d359e50084dcf4.zip cpython-a07ab29a79755191ed6c507247d359e50084dcf4.tar.gz cpython-a07ab29a79755191ed6c507247d359e50084dcf4.tar.bz2 |
Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes.
Patch by Aviv Palivoda.
Diffstat (limited to 'Lib/test')
-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. |