Skip to content

Commit fe889e7

Browse files
committed
Mark tests failing only in Windows
1 parent 44f56cb commit fe889e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_codecs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3592,7 +3592,7 @@ def test_cp1252(self):
35923592
(b'\xff', 'strict', '\xff'),
35933593
))
35943594

3595-
@unittest.expectedFailure # TODO: RUSTPYTHON
3595+
@unittest.expectedFailureIfWindows("TODO: RUSTPYTHON")
35963596
def test_cp708(self):
35973597
self.check_encode(708, (
35983598
('abc2%', 'strict', b'abc2%'),
@@ -3622,6 +3622,7 @@ def test_cp708(self):
36223622
(b'[\xa0]', 'surrogatepass', None),
36233623
))
36243624

3625+
@unittest.expectedFailureIfWindows("TODO: RUSTPYTHON")
36253626
def test_cp20106(self):
36263627
self.check_encode(20106, (
36273628
('abc', 'strict', b'abc'),

0 commit comments

Comments
 (0)