diff --git a/_pytest/fixtures.py b/_pytest/fixtures.py index 38e96e891..ab437459b 100644 --- a/_pytest/fixtures.py +++ b/_pytest/fixtures.py @@ -868,7 +868,7 @@ def yield_fixture(scope="function", params=None, autouse=False, ids=None, name=N defaultfuncargprefixmarker = fixture() funcarg_prefix_warning = ( '{name}: declaring fixtures using "pytest_funcarg__" prefix is deprecated ' - 'and scheduled to be removed in pytest 4.0.\n' + 'and scheduled to be removed in pytest 4.0. ' 'Please remove the prefix and use the @pytest.fixture decorator instead.') diff --git a/testing/acceptance_test.py b/testing/acceptance_test.py index 72cd18f11..d709a6f4d 100644 --- a/testing/acceptance_test.py +++ b/testing/acceptance_test.py @@ -789,7 +789,9 @@ def test_funcarg_prefix_deprecation(testdir): """) result = testdir.runpytest('-ra') result.stdout.fnmatch_lines([ - '*declaring fixtures using "pytest_funcarg__" prefix is deprecated and scheduled to be removed in pytest 4.0*', - '*remove the prefix and use the @pytest.fixture decorator instead*', + ('WC1 None pytest_funcarg__value: ' + 'declaring fixtures using "pytest_funcarg__" prefix is deprecated ' + 'and scheduled to be removed in pytest 4.0. ' + 'Please remove the prefix and use the @pytest.fixture decorator instead.'), '*1 passed*', ])