[Python-checkins] cpython: issue9859: Use an expected failure rather than a skip.

gregory.p.smith python-checkins at python.org
Tue Apr 14 22:54:17 CEST 2015


https://hg.python.org/cpython/rev/c6df85e1d42e
changeset:   95662:c6df85e1d42e
user:        Gregory P. Smith <greg at krypto.org>
date:        Tue Apr 14 13:54:09 2015 -0700
summary:
  issue9859: Use an expected failure rather than a skip.

files:
  Lib/test/test_io.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -722,7 +722,7 @@
 @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)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list