summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-04-16 14:51:17 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-04-16 14:51:17 (GMT)
commit9e9235511ec8e211683e6dfc5f02d86c773bb4ef (patch)
tree84ad860bcafcc104b3fe27a956c360abae917a7e /Lib/test/test_os.py
parent4d4ac5bd029c53c107d9ddd4596440fde334605a (diff)
parenta07ab29a79755191ed6c507247d359e50084dcf4 (diff)
downloadcpython-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.py2
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.