From: Victor Stinner Date: Sat, 26 Mar 2016 00:12:36 +0000 (+0100) Subject: Issue #25911: more info on test_os failure X-Git-Tag: v3.6.0a1~321 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53b0a41d3103ab84f3ef9a1532bf95cff8819636;p=thirdparty%2FPython%2Fcpython.git Issue #25911: more info on test_os failure --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 11178753ad21..2fb7d1b6d6bc 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