Fix wrong fixture name. Closes #2143.

This commit is contained in:
Luke Murphy 2016-12-20 01:48:32 +01:00
parent da40bcf97f
commit f94189b48b
1 changed files with 1 additions and 1 deletions

View File

@ -1002,7 +1002,7 @@ Given the tests file structure is:
@pytest.mark.parametrize('username', ['directly-overridden-username-other'])
def test_username_other(other_username):
assert username == 'other-directly-overridden-username-other'
assert other_username == 'other-directly-overridden-username-other'
In the example above, a fixture value is overridden by the test parameter value. Note that the value of the fixture
can be overridden this way even if the test doesn't use it directly (doesn't mention it in the function prototype).