Fix docstring

This was copied from another paramterize call and I forgot to change
the parameters referred too.
This commit is contained in:
Floris Bruynooghe 2013-12-16 10:51:50 +00:00
parent fd8638652d
commit b820cf2e39
1 changed files with 2 additions and 2 deletions

View File

@ -73,9 +73,9 @@ def fixture(scope="function", params=None, autouse=False, ids=None):
can see it. If False (the default) then an explicit
reference is needed to activate the fixture.
:arg ids: list of string ids each corresponding to the argvalues
:arg ids: list of string ids each corresponding to the params
so that they are part of the test id. If no ids are provided
they will be generated automatically from the argvalues.
they will be generated automatically from the params.
"""
if callable(scope) and params is None and autouse == False: