Skip to content

Commit 8cab41f

Browse files
committed
Unmark passing tests in test_base64
1 parent a92d3e9 commit 8cab41f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Lib/test/test_base64.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,6 @@ def test_b32decode(self):
314314
self.check_other_types(base64.b32decode, b'MFRGG===', b"abc")
315315
self.check_decode_type_errors(base64.b32decode)
316316

317-
# TODO: RUSTPYTHON
318-
@unittest.expectedFailure
319317
def test_b32decode_casefold(self):
320318
eq = self.assertEqual
321319
tests = {b'': b'',
@@ -357,8 +355,6 @@ def test_b32decode_casefold(self):
357355
self.assertRaises(binascii.Error, base64.b32decode, data)
358356
self.assertRaises(binascii.Error, base64.b32decode, data_str)
359357

360-
# TODO: RUSTPYTHON
361-
@unittest.expectedFailure
362358
def test_b32decode_error(self):
363359
tests = [b'abc', b'ABCDEF==', b'==ABCDEF']
364360
prefixes = [b'M', b'ME', b'MFRA', b'MFRGG', b'MFRGGZA', b'MFRGGZDF']
@@ -675,8 +671,6 @@ def test_decode_nonascii_str(self):
675671
for f in decode_funcs:
676672
self.assertRaises(ValueError, f, 'with non-ascii \xcb')
677673

678-
# TODO: RUSTPYTHON
679-
@unittest.expectedFailure
680674
def test_ErrorHeritage(self):
681675
self.assertTrue(issubclass(binascii.Error, ValueError))
682676

0 commit comments

Comments
 (0)