Skip to content

Commit c5cc179

Browse files
committed
remove decorators on success tests
Signed-off-by: snowapril <sinjihng@gmail.com>
1 parent 2b3b5fb commit c5cc179

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

Lib/test/test_base64.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -607,8 +607,6 @@ def test_b85_padding(self):
607607
eq(base64.b85decode(b'czAet'), b"xxxx")
608608
eq(base64.b85decode(b'czAetcmMzZ'), b"xxxxx\x00\x00\x00")
609609

610-
# TODO: RUSTPYTHON
611-
@unittest.expectedFailure
612610
def test_a85decode_errors(self):
613611
illegal = (set(range(32)) | set(range(118, 256))) - set(b' \t\n\r\v')
614612
for c in illegal:
@@ -644,8 +642,6 @@ def test_a85decode_errors(self):
644642
self.assertRaises(ValueError, base64.a85decode, b's8W-', adobe=False)
645643
self.assertRaises(ValueError, base64.a85decode, b's8W-"', adobe=False)
646644

647-
# TODO: RUSTPYTHON
648-
@unittest.expectedFailure
649645
def test_b85decode_errors(self):
650646
illegal = list(range(33)) + \
651647
list(b'"\',./:[\\]') + \

Lib/test/test_zipfile.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,8 +600,6 @@ def test_add_file_before_1980(self):
600600
zinfo = zipfp.getinfo(TESTFN)
601601
self.assertEqual(zinfo.date_time, (1980, 1, 1, 0, 0, 0))
602602

603-
# TODO: RUSTPYTHON
604-
@unittest.expectedFailure
605603
def test_add_file_after_2107(self):
606604
# Set atime and mtime to 2108-12-30
607605
ts = 4386268800

0 commit comments

Comments
 (0)