]> granicus.if.org Git - python/commitdiff
Sort file list in test_os.WalkTests
authorHynek Schlawack <hs@ox.cx>
Tue, 15 May 2012 15:55:38 +0000 (17:55 +0200)
committerHynek Schlawack <hs@ox.cx>
Tue, 15 May 2012 15:55:38 +0000 (17:55 +0200)
Adding new files into the tree lead to buildbot fails as the order wasn't
deterministic.

Lib/test/test_os.py
Misc/NEWS

index 1e0daf08556a16a8f78f699ac3e4cada49e7373a..9a84ba1787a495457aec46f6471c121584cfe3d8 100644 (file)
@@ -695,6 +695,7 @@ class WalkTests(unittest.TestCase):
         #     flipped:  TESTFN, SUB2, SUB1, SUB11
         flipped = all[0][1][0] != "SUB1"
         all[0][1].sort()
+        all[3 - 2 * flipped][-1].sort()
         self.assertEqual(all[0], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
         self.assertEqual(all[1 + flipped], (sub1_path, ["SUB11"], ["tmp2"]))
         self.assertEqual(all[2 + flipped], (sub11_path, [], []))
index c79713fa681a1efaef3c142ddcaacc641c38cbde..48709799e340a41288e2b1efddb24fbee20df329 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,12 +31,12 @@ Core and Builtins
 Library
 -------
 
-- Issue 14773: Fix os.fwalk() failing on dangling symlinks.
+- Issue #14773: Fix os.fwalk() failing on dangling symlinks.
 
 - Issue #12541: Be lenient with quotes around Realm field of HTTP Basic
   Authentation in urllib2.
 
-- Issue 14807: move undocumented tarfile.filemode() to stat.filemode() and add
+- Issue #14807: move undocumented tarfile.filemode() to stat.filemode() and add
   doc entry. Add tarfile.filemode alias with deprecation warning.
 
 - Issue #13815: TarFile.extractfile() now returns io.BufferedReader objects.