From abfd9774ef0f89d5430abf1b83a37ddf268e351b Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 12 Sep 2017 17:59:09 -0300 Subject: [PATCH] Remove xfail mark from passing test in py26 --- testing/code/test_source.py | 1 - 1 file changed, 1 deletion(-) diff --git a/testing/code/test_source.py b/testing/code/test_source.py index aaa2b8c5f..1d315aa9b 100644 --- a/testing/code/test_source.py +++ b/testing/code/test_source.py @@ -391,7 +391,6 @@ def test_deindent(): assert lines == ['', 'def f():', ' def g():', ' pass', ' '] -@pytest.mark.xfail("sys.version_info[:3] < (2,7,0)") def test_source_of_class_at_eof_without_newline(tmpdir): # this test fails because the implicit inspect.getsource(A) below # does not return the "x = 1" last line.