diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-03-26 00:12:36 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-03-26 00:12:36 (GMT) |
commit | 53b0a41d3103ab84f3ef9a1532bf95cff8819636 (patch) | |
tree | 2ca2dd395ccc8dbd04f562c0ede003d6845fe373 | |
parent | ca9dbc7d880ac6e5e1df3219e34670b18998a346 (diff) | |
download | cpython-53b0a41d3103ab84f3ef9a1532bf95cff8819636.zip cpython-53b0a41d3103ab84f3ef9a1532bf95cff8819636.tar.gz cpython-53b0a41d3103ab84f3ef9a1532bf95cff8819636.tar.bz2 |
Issue #25911: more info on test_os failure
-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 1117875..2fb7d1b 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 |