fix merge boo-boo

This commit is contained in:
Benjamin Peterson 2008-10-11 02:19:18 +00:00
parent f10a79aad4
commit 1bc15c21d6
1 changed files with 2 additions and 2 deletions

View File

@ -154,8 +154,8 @@ class WhichDBTestCase(unittest.TestCase):
for k, v in a:
self.assert_(k in self.d)
self.assertEqual(self.d[k], v)
self.assert_('xxx' not in self.d)
self.assertRaises(KeyError, lambda: self.d['xxx'])
self.assert_(b'xxx' not in self.d)
self.assertRaises(KeyError, lambda: self.d[b'xxx'])
self.d.close()