[Python-checkins] cpython: Add two more sorts to test_os.WalkTests I've missed before

hynek.schlawack python-checkins at python.org
Tue May 15 18:47:51 CEST 2012


http://hg.python.org/cpython/rev/f8b8babffd4d
changeset:   76963:f8b8babffd4d
parent:      76961:54d63a86a876
user:        Hynek Schlawack <hs at ox.cx>
date:        Tue May 15 18:40:17 2012 +0200
summary:
  Add two more sorts to test_os.WalkTests I've missed before

files:
  Lib/test/test_os.py |  2 ++
  1 files changed, 2 insertions(+), 0 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
@@ -711,6 +711,7 @@
                 dirs.remove('SUB1')
         self.assertEqual(len(all), 2)
         self.assertEqual(all[0], (walk_path, ["SUB2"], ["tmp1"]))
+        all[1][-1].sort()
         self.assertEqual(all[1], sub2_tree)
 
         # Walk bottom-up.
@@ -721,6 +722,7 @@
         #     flipped:  SUB2, SUB11, SUB1, TESTFN
         flipped = all[3][1][0] != "SUB1"
         all[3][1].sort()
+        all[2 - 2 * flipped][-1].sort()
         self.assertEqual(all[3], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
         self.assertEqual(all[flipped], (sub11_path, [], []))
         self.assertEqual(all[flipped + 1], (sub1_path, ["SUB11"], ["tmp2"]))

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


More information about the Python-checkins mailing list