Commit 26ed2340 authored by Ezio Melotti's avatar Ezio Melotti

Enable a broken test and fix it.

parent 3f7beb99
......@@ -803,7 +803,7 @@ class UTF8SigTest(ReadTest):
class EscapeDecodeTest(unittest.TestCase):
def test_empty(self):
self.assertEqual(codecs.escape_decode(""), ("", 0))
self.assertEqual(codecs.escape_decode(""), (b"", 0))
class RecodingTest(unittest.TestCase):
def test_recoding(self):
......@@ -1905,6 +1905,7 @@ def test_main():
UTF16BETest,
UTF8Test,
UTF8SigTest,
EscapeDecodeTest,
UTF7Test,
UTF16ExTest,
ReadBufferTest,
......
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