From 47d2d20d81077151a64f9ca2376df971672c4ec0 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Mon, 21 Oct 2013 13:36:22 +0200 Subject: [PATCH] fix typo, thank avanderneuth --- doc/en/fixture.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/fixture.txt b/doc/en/fixture.txt index 7b52990e3..b338055bb 100644 --- a/doc/en/fixture.txt +++ b/doc/en/fixture.txt @@ -234,7 +234,7 @@ quick as a single one because they reuse the same instance. If you decide that you rather want to have a session-scoped ``smtp`` instance, you can simply declare it:: - @pytest.fixture(scope=``session``) + @pytest.fixture(scope="session") def smtp(...): # the returned fixture value will be shared for # all tests needing it