From b820cf2e39a3ffd9726829404eb0c7fff432204a Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Mon, 16 Dec 2013 10:51:50 +0000 Subject: [PATCH] Fix docstring This was copied from another paramterize call and I forgot to change the parameters referred too. --- _pytest/python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_pytest/python.py b/_pytest/python.py index 26511ea05..4be5b2a0a 100644 --- a/_pytest/python.py +++ b/_pytest/python.py @@ -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: