Skip to content

Commit 6bbcba6

Browse files
committed
Enable test_binascii
1 parent d511d1b commit 6bbcba6

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Src/StdLib/Lib/test/test_binascii.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ def test_hqx(self):
174174
res = binascii.rledecode_hqx(b)
175175
self.assertEqual(res, self.rawdata)
176176

177+
@unittest.skipIf(sys.implementation.name == "ironpython", "TODO: not implemented")
177178
def test_rle(self):
178179
# test repetition with a repetition longer than the limit of 255
179180
data = (b'a' * 100 + b'b' + b'c' * 300)

0 commit comments

Comments
 (0)