Commit 1bc15c21 authored by Benjamin Peterson's avatar Benjamin Peterson

fix merge boo-boo

parent f10a79aa
......@@ -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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment