diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-11-25 21:27:00 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-11-25 21:27:00 (GMT) |
commit | 45dea65b398851555df1f5e3f4d01eb6a4bf7a32 (patch) | |
tree | 2cc7d45039ac12c82c1c6149fdb7ce52667e3031 /Lib | |
parent | 3e7e069887945e2cce76c202ab0822d3032c18e9 (diff) | |
download | cpython-45dea65b398851555df1f5e3f4d01eb6a4bf7a32.zip cpython-45dea65b398851555df1f5e3f4d01eb6a4bf7a32.tar.gz cpython-45dea65b398851555df1f5e3f4d01eb6a4bf7a32.tar.bz2 |
Fix a broken test_dbm_gnu as introducted by r67380.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/test_dbm_gnu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dbm_gnu.py b/Lib/test/test_dbm_gnu.py index 0049aaa..73203b6 100755 --- a/Lib/test/test_dbm_gnu.py +++ b/Lib/test/test_dbm_gnu.py @@ -22,7 +22,7 @@ class TestGdbm(unittest.TestCase): self.g['12345678910'] = '019237410982340912840198242' self.g[b'bytes'] = b'data' key_set = set(self.g.keys()) - self.assertEqual(key_set, set([b'a', b'12345678910'])) + self.assertEqual(key_set, set([b'a', b'bytes', b'12345678910'])) self.assert_(b'a' in self.g) self.assertEqual(self.g[b'bytes'], b'data') key = self.g.firstkey() |