bpo-32618: Fix test_mutatingdecodehandler not testing test.mutating (#5269)

* bpo-32618: Fix test_mutatingdecodehandler not testing test.mutating

It should test both test.replacing and test.mutating instead of test test.replacing twice.
This commit is contained in:
Xiang Zhang 2018-01-23 22:50:50 +08:00 committed by GitHub
parent dc6b9462c0
commit 370d04d1dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -1032,7 +1032,7 @@ class CodecCallbackTest(unittest.TestCase):
def mutating(exc):
if isinstance(exc, UnicodeDecodeError):
exc.object[:] = b""
exc.object = b""
return ("\u4242", 0)
else:
raise TypeError("don't know how to handle %r" % exc)
@ -1042,8 +1042,7 @@ class CodecCallbackTest(unittest.TestCase):
with test.support.check_warnings():
# unicode-internal has been deprecated
for (encoding, data) in baddata:
with self.assertRaises(TypeError):
data.decode(encoding, "test.replacing")
self.assertEqual(data.decode(encoding, "test.mutating"), "\u4242")
def test_fake_error_class(self):
handlers = [