From 14a88abfcc5dc9d731ab4992682f4aa22a6e55c8 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Tue, 14 Apr 2015 13:54:09 -0700 Subject: [PATCH] issue9859: Use an expected failure rather than a skip. --- Lib/test/test_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index c8a962c6fa7..02f74279a1c 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -722,7 +722,7 @@ class PyIOTest(IOTest): @support.cpython_only class APIMismatchTest(unittest.TestCase): - @unittest.skip('test to be fixed by issue 9858') + @unittest.expectedFailure # Test to be fixed by issue9858. def test_RawIOBase_io_in_pyio_match(self): """Test that pyio RawIOBase class has all c RawIOBase methods""" mismatch = support.detect_api_mismatch(pyio.RawIOBase, io.RawIOBase)