Test that "unconditional skip" is the default reason if none given

This commit is contained in:
Michael Aquilina 2015-10-03 17:00:16 +01:00
parent 5ff9a0ff54
commit fc0bd9412c
1 changed files with 1 additions and 1 deletions

View File

@ -432,7 +432,7 @@ class TestSkip:
""") """)
result = testdir.runpytest('-rs') result = testdir.runpytest('-rs')
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
"*Skipped instance*", "*unconditional skip*",
"*1 skipped*", "*1 skipped*",
]) ])