From 94aa76fec0259c456e7a4dc547b5f5751092aba2 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Thu, 4 Apr 2013 14:36:44 +0200 Subject: [PATCH] fix reference --- doc/en/fixture.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/en/fixture.txt b/doc/en/fixture.txt index b695688ff..cd3b64a2b 100644 --- a/doc/en/fixture.txt +++ b/doc/en/fixture.txt @@ -298,7 +298,6 @@ Running it:: > assert 0, smtp.helo() E AssertionError: (250, 'mail.python.org') -.. _`request`: :py:class:`_pytest.python.FixtureRequest` .. _`fixture-parametrize`: @@ -315,7 +314,7 @@ configured in multiple ways. Extending the previous example, we can flag the fixture to create two ``smtp`` fixture instances which will cause all tests using the fixture to run twice. The fixture function gets access to each parameter -through the special `request`_ object:: +through the special :py:class:`request ` object:: # content of conftest.py import pytest