fix reference

This commit is contained in:
holger krekel 2013-04-04 14:36:44 +02:00
parent 265a4de06e
commit 94aa76fec0
1 changed files with 1 additions and 2 deletions

View File

@ -298,7 +298,6 @@ Running it::
> assert 0, smtp.helo() > assert 0, smtp.helo()
E AssertionError: (250, 'mail.python.org') E AssertionError: (250, 'mail.python.org')
.. _`request`: :py:class:`_pytest.python.FixtureRequest`
.. _`fixture-parametrize`: .. _`fixture-parametrize`:
@ -315,7 +314,7 @@ configured in multiple ways.
Extending the previous example, we can flag the fixture to create two Extending the previous example, we can flag the fixture to create two
``smtp`` fixture instances which will cause all tests using the fixture ``smtp`` fixture instances which will cause all tests using the fixture
to run twice. The fixture function gets access to each parameter to run twice. The fixture function gets access to each parameter
through the special `request`_ object:: through the special :py:class:`request <FixtureRequest>` object::
# content of conftest.py # content of conftest.py
import pytest import pytest