summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2015-04-14 20:54:09 (GMT)
committerGregory P. Smith <greg@krypto.org>2015-04-14 20:54:09 (GMT)
commit14a88abfcc5dc9d731ab4992682f4aa22a6e55c8 (patch)
tree82801be75345f5d3b53f341b8c0aef89bafe7035
parentcadbab295d035a60222d0dc882a5e72ebf12c89a (diff)
downloadcpython-14a88abfcc5dc9d731ab4992682f4aa22a6e55c8.zip
cpython-14a88abfcc5dc9d731ab4992682f4aa22a6e55c8.tar.gz
cpython-14a88abfcc5dc9d731ab4992682f4aa22a6e55c8.tar.bz2
issue9859: Use an expected failure rather than a skip.
-rw-r--r--Lib/test/test_io.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index c8a962c..02f7427 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)