Remove redundant comments
This commit is contained in:
parent
25d74a5919
commit
5ff9a0ff54
|
@ -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*",
|
||||||
|
|
Loading…
Reference in New Issue