Remove redundant comments

This commit is contained in:
Michael Aquilina 2015-10-03 16:59:27 +01:00
parent 25d74a5919
commit 5ff9a0ff54
1 changed files with 0 additions and 4 deletions

View File

@ -443,8 +443,6 @@ class TestSkip:
def test_bar(): def test_bar():
pass pass
""") """)
# cant use assertoutcome because we cant
# also check the reason
result = testdir.runpytest('-rs') result = testdir.runpytest('-rs')
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
"*for lolz*", "*for lolz*",
@ -463,8 +461,6 @@ class TestSkip:
def test_baz(): def test_baz():
assert True assert True
""") """)
# cant use assertoutcome because we cant
# also check the reason
result = testdir.runpytest('-rs') result = testdir.runpytest('-rs')
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
"*no reason*", "*no reason*",