[Python-checkins] cpython: Issue #25911: more info on test_os failure

victor.stinner python-checkins at python.org
Fri Mar 25 20:12:54 EDT 2016


https://hg.python.org/cpython/rev/82da02b5bf22
changeset:   100758:82da02b5bf22
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sat Mar 26 01:12:36 2016 +0100
summary:
  Issue #25911: more info on test_os failure

files:
  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
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -892,7 +892,7 @@
         # 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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list