diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py index c688d7891..492e25d97 100644 --- a/Lib/test/test_binhex.py +++ b/Lib/test/test_binhex.py @@ -22,7 +22,8 @@ class BinHexTestCase(unittest.TestCase): DATA = b'Jack is my hero' - @unittest.skip("TODO: RUSTPYTHON, AttributeError: module 'binascii' has no attribute 'crc_hqx'") + # TODO: RUSTPYTHON + @unittest.expectedFailure def test_binhex(self): with open(self.fname1, 'wb') as f: f.write(self.DATA) @@ -46,7 +47,8 @@ class BinHexTestCase(unittest.TestCase): self.assertRaises(binhex.Error, binhex.binhex, self.fname3, self.fname2) - @unittest.skip("TODO: RUSTPYTHON, AttributeError: module 'binascii' has no attribute 'crc_hqx'") + # TODO: RUSTPYTHON + @unittest.expectedFailure def test_binhex_line_endings(self): # bpo-29566: Ensure the line endings are those for macOS 9 with open(self.fname1, 'wb') as f: