]> granicus.if.org Git - python/commitdiff
Add two more sorts to test_os.WalkTests I've missed before
authorHynek Schlawack <hs@ox.cx>
Tue, 15 May 2012 16:40:17 +0000 (18:40 +0200)
committerHynek Schlawack <hs@ox.cx>
Tue, 15 May 2012 16:40:17 +0000 (18:40 +0200)
Lib/test/test_os.py

index 9a84ba1787a495457aec46f6471c121584cfe3d8..9b29b37cf3d7e78bf92d7a42beeaa63de77b76ff 100644 (file)
@@ -711,6 +711,7 @@ class WalkTests(unittest.TestCase):
                 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 @@ class WalkTests(unittest.TestCase):
         #     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"]))