Remove xfail mark from passing test in py26

This commit is contained in:
Bruno Oliveira 2017-09-12 17:59:09 -03:00
parent 10d43bd3bf
commit abfd9774ef
1 changed files with 0 additions and 1 deletions

View File

@ -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.