Fix the tests

This commit is contained in:
Vasily Kuznetsov 2016-06-22 13:25:46 +02:00
parent ee311e1eae
commit 1a75139f72
1 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@ def test_show_only_active_fixtures(testdir):
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
'*SETUP F arg1*', '*SETUP F arg1*',
'*test_arg1 fixtures: arg1', '*test_arg1 (fixtures used: arg1)',
'*TEARDOWN F arg1*', '*TEARDOWN F arg1*',
]) ])
assert "_arg0" not in result.stdout.str() assert "_arg0" not in result.stdout.str()
@ -41,7 +41,7 @@ def test_show_different_scopes(testdir):
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
'SETUP S arg_session*', 'SETUP S arg_session*',
'*SETUP F arg_function*', '*SETUP F arg_function*',
'*test_arg1 fixtures: arg_function, arg_session', '*test_arg1 (fixtures used: arg_function, arg_session)',
'*TEARDOWN F arg_function*', '*TEARDOWN F arg_function*',
'TEARDOWN S arg_session*', 'TEARDOWN S arg_session*',
]) ])
@ -68,8 +68,8 @@ def test_show_nested_fixtures(testdir):
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
'SETUP S arg_same*', 'SETUP S arg_same*',
'*SETUP F arg_same*', '*SETUP F arg_same (fixtures used: arg_same)*',
'*test_arg1 fixtures: arg_same', '*test_arg1 (fixtures used: arg_same)',
'*TEARDOWN F arg_same*', '*TEARDOWN F arg_same*',
'TEARDOWN S arg_same*', 'TEARDOWN S arg_same*',
]) ])
@ -94,7 +94,7 @@ def test_show_fixtures_with_autouse(testdir):
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
'SETUP S arg_session*', 'SETUP S arg_session*',
'*SETUP F arg_function*', '*SETUP F arg_function*',
'*test_arg1 fixtures: arg_function, arg_session', '*test_arg1 (fixtures used: arg_function, arg_session)',
]) ])