mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Merge fix for broken/disabled test.
This commit is contained in:
commit
e0b87edd7f
1 changed files with 2 additions and 1 deletions
|
@ -925,7 +925,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):
|
||||
|
@ -2217,6 +2217,7 @@ def test_main():
|
|||
UTF16BETest,
|
||||
UTF8Test,
|
||||
UTF8SigTest,
|
||||
EscapeDecodeTest,
|
||||
CP65001Test,
|
||||
UTF7Test,
|
||||
UTF16ExTest,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue