[Python-3000-checkins] r67383 - python/branches/py3k/Lib/test/test_dbm_gnu.py

brett.cannon python-3000-checkins at python.org
Tue Nov 25 22:27:00 CET 2008


Author: brett.cannon
Date: Tue Nov 25 22:27:00 2008
New Revision: 67383

Log:
Fix a broken test_dbm_gnu as introducted by r67380.


Modified:
   python/branches/py3k/Lib/test/test_dbm_gnu.py

Modified: python/branches/py3k/Lib/test/test_dbm_gnu.py
==============================================================================
--- python/branches/py3k/Lib/test/test_dbm_gnu.py	(original)
+++ python/branches/py3k/Lib/test/test_dbm_gnu.py	Tue Nov 25 22:27:00 2008
@@ -22,7 +22,7 @@
         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()


More information about the Python-3000-checkins mailing list