Skip to content

Commit df773d7

Browse files
committed
Mark erroring/failing tests
1 parent 11ada0f commit df773d7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Lib/test/test_wsgiref.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,8 @@ def make_it(text=text,size=size):
357357
it.close()
358358
self.assertTrue(it.filelike.closed)
359359

360+
# TODO: RUSTPYTHON
361+
@unittest.expectedFailure
360362
def test_filewrapper_getitem_deprecation(self):
361363
wrapper = util.FileWrapper(StringIO('foobar'), 3)
362364
with self.assertWarnsRegex(DeprecationWarning,
@@ -818,6 +820,8 @@ def flush(self):
818820
b"Hello, world!",
819821
written)
820822

823+
# TODO: RUSTPYTHON
824+
@unittest.expectedFailure
821825
def testClientConnectionTerminations(self):
822826
environ = {"SERVER_PROTOCOL": "HTTP/1.0"}
823827
for exception in (
@@ -836,6 +840,8 @@ def write(self, b):
836840

837841
self.assertFalse(stderr.getvalue())
838842

843+
# TODO: RUSTPYTHON
844+
@unittest.expectedFailure
839845
def testDontResetInternalStateOnException(self):
840846
class CustomException(ValueError):
841847
pass

0 commit comments

Comments
 (0)