Remove stdlib test

This commit is contained in:
Thomas Hisch 2019-01-22 20:25:51 +01:00
parent 1bcb2f91cc
commit a2954578aa
1 changed files with 0 additions and 9 deletions

View File

@ -852,15 +852,6 @@ class TestCaptureIO(object):
assert f.getvalue() == "foo\r\n" assert f.getvalue() == "foo\r\n"
def test_bytes_io():
f = io.BytesIO()
f.write(b"hello")
with pytest.raises(TypeError):
f.write(u"hello")
s = f.getvalue()
assert s == b"hello"
def test_dontreadfrominput(): def test_dontreadfrominput():
from _pytest.capture import DontReadFromInput from _pytest.capture import DontReadFromInput