From 53b0a41d3103ab84f3ef9a1532bf95cff8819636 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 26 Mar 2016 01:12:36 +0100 Subject: Issue #25911: more info on test_os failure --- Lib/test/test_os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12