mirror of
https://github.com/python/cpython.git
synced 2025-11-10 02:21:40 +00:00
Fix dbm_gnu test relying on set order.
This commit is contained in:
parent
06b1c4f68b
commit
7c573f7a07
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ def test_flags(self):
|
|||
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()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue