Commit dff46faa authored by Antoine Pitrou's avatar Antoine Pitrou

Fix use of assertRaises following c760bd844222 (spotted by Alex Gaynor).

parent c229e6e8
......@@ -166,6 +166,7 @@ class BaseXYTestCase(unittest.TestCase):
self.assertEqual(base64.b64decode(bstr.decode('ascii')), res)
with self.assertRaises(binascii.Error):
base64.b64decode(bstr, validate=True)
with self.assertRaises(binascii.Error):
base64.b64decode(bstr.decode('ascii'), validate=True)
def test_b32encode(self):
......@@ -236,6 +237,7 @@ class BaseXYTestCase(unittest.TestCase):
for data in [b'abc', b'ABCDEF==']:
with self.assertRaises(binascii.Error):
base64.b32decode(data)
with self.assertRaises(binascii.Error):
base64.b32decode(data.decode('ascii'))
def test_b16encode(self):
......
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