summaryrefslogtreecommitdiff
path: root/testing/code
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2017-09-12 17:59:09 -0300
committerBruno Oliveira <nicoddemus@gmail.com>2017-09-12 17:59:09 -0300
commitabfd9774ef0f89d5430abf1b83a37ddf268e351b (patch)
tree6a56db6882c1d80c58c03202935efa5831e2b228 /testing/code
parent10d43bd3bfbc01a51b4b92373fe4f71da5db50b8 (diff)
downloadpytest-abfd9774ef0f89d5430abf1b83a37ddf268e351b.tar.gz
Remove xfail mark from passing test in py26
Diffstat (limited to 'testing/code')
-rw-r--r--testing/code/test_source.py1
1 files changed, 0 insertions, 1 deletions
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.