Remove a PyPy version check for an unsupported version
pytest doesn't support these PyPy versions anymore, so no need to have checks for them.
This commit is contained in:
parent
f760356578
commit
c7a83a0f31
|
@ -92,8 +92,6 @@ class TestCaptureManager:
|
||||||
|
|
||||||
@pytest.mark.parametrize("method", ["fd", "sys"])
|
@pytest.mark.parametrize("method", ["fd", "sys"])
|
||||||
def test_capturing_unicode(testdir, method):
|
def test_capturing_unicode(testdir, method):
|
||||||
if hasattr(sys, "pypy_version_info") and sys.pypy_version_info < (2, 2):
|
|
||||||
pytest.xfail("does not work on pypy < 2.2")
|
|
||||||
obj = "'b\u00f6y'"
|
obj = "'b\u00f6y'"
|
||||||
testdir.makepyfile(
|
testdir.makepyfile(
|
||||||
"""\
|
"""\
|
||||||
|
|
Loading…
Reference in New Issue