summaryrefslogtreecommitdiff
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-03-26 01:12:36 +0100
committerVictor Stinner <victor.stinner@gmail.com>2016-03-26 01:12:36 +0100
commit53b0a41d3103ab84f3ef9a1532bf95cff8819636 (patch)
tree2ca2dd395ccc8dbd04f562c0ede003d6845fe373 /Lib/test/test_os.py
parentca9dbc7d880ac6e5e1df3219e34670b18998a346 (diff)
downloadcpython-git-53b0a41d3103ab84f3ef9a1532bf95cff8819636.tar.gz
Issue #25911: more info on test_os failure
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 11178753ad..2fb7d1b6d6 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -892,7 +892,7 @@ class WalkTests(unittest.TestCase):
# Walk bottom-up.
all = list(self.walk(self.walk_path, topdown=False))
- self.assertEqual(len(all), 4)
+ self.assertEqual(len(all), 4, all)
# We can't know which order SUB1 and SUB2 will appear in.
# Not flipped: SUB11, SUB1, SUB2, TESTFN
# flipped: SUB2, SUB11, SUB1, TESTFN