Clean up skips in test_binhex

This commit is contained in:
Padraic Fanning
2021-10-02 13:34:57 -04:00
parent a1f0004586
commit dbfb93661c

View File

@@ -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: