From: Georg Brandl Date: Mon, 20 Feb 2012 21:48:06 +0000 (+0100) Subject: Fix dbm_gnu test relying on set order. X-Git-Tag: v3.1.5rc1~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c573f7a075fd8fc7bf90bdbcc4f163cda3b9acf;p=thirdparty%2FPython%2Fcpython.git Fix dbm_gnu test relying on set order. --- diff --git a/Lib/test/test_dbm_gnu.py b/Lib/test/test_dbm_gnu.py index 2173b92afa98..f77dcfe49a15 100755 --- a/Lib/test/test_dbm_gnu.py +++ b/Lib/test/test_dbm_gnu.py @@ -49,7 +49,7 @@ class TestGdbm(unittest.TestCase): all = set(gdbm.open_flags) # Test standard flags (presumably "crwn"). modes = all - set('fsu') - for mode in modes: + for mode in sorted(modes): # put "c" mode first self.g = gdbm.open(filename, mode) self.g.close()