From dbfb93661c0cec2efbf92ef21689eccc349df6d1 Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Sat, 2 Oct 2021 13:34:57 -0400 Subject: [PATCH] Clean up skips in test_binhex --- Lib/test/test_binhex.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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: