diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-16 14:51:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-16 14:51:17 (GMT) |
commit | 9e9235511ec8e211683e6dfc5f02d86c773bb4ef (patch) | |
tree | 84ad860bcafcc104b3fe27a956c360abae917a7e /Lib/test/test_os.py | |
parent | 4d4ac5bd029c53c107d9ddd4596440fde334605a (diff) | |
parent | a07ab29a79755191ed6c507247d359e50084dcf4 (diff) | |
download | cpython-9e9235511ec8e211683e6dfc5f02d86c773bb4ef.zip cpython-9e9235511ec8e211683e6dfc5f02d86c773bb4ef.tar.gz cpython-9e9235511ec8e211683e6dfc5f02d86c773bb4ef.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/test_os.py')
-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 2fb7d1b..01404ff 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -857,7 +857,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. |