Skip to content

Commit dc9e958

Browse files
committed
Unmark fixed tests on test_binascii
1 parent 04537b1 commit dc9e958

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Lib/test/test_binascii.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ def test_exceptions(self):
3232
self.assertTrue(issubclass(binascii.Error, Exception))
3333
self.assertTrue(issubclass(binascii.Incomplete, Exception))
3434

35-
# TODO: RUSTPYTHON
36-
@unittest.expectedFailure
3735
def test_functions(self):
3836
# Check presence of all functions
3937
for name in all_functions:
@@ -386,8 +384,6 @@ def test_qp(self):
386384
self.assertEqual(b2a_qp(type2test(b'a.\n')), b'a.\n')
387385
self.assertEqual(b2a_qp(type2test(b'.a')[:-1]), b'=2E')
388386

389-
# TODO: RUSTPYTHON
390-
@unittest.expectedFailure
391387
def test_empty_string(self):
392388
# A test for SF bug #1022953. Make sure SystemError is not raised.
393389
empty = self.type2test(b'')

0 commit comments

Comments
 (0)