From 9408291c50c2576d62ebd517e51c2275ea18f63f Mon Sep 17 00:00:00 2001 From: Alex Barbato Date: Sat, 16 Jun 2018 12:40:25 -0400 Subject: [PATCH] Fixing parens typo in fixture.rst --- doc/en/fixture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/fixture.rst b/doc/en/fixture.rst index dfbf519db..d4d386792 100644 --- a/doc/en/fixture.rst +++ b/doc/en/fixture.rst @@ -165,7 +165,7 @@ Scope: sharing a fixture instance across tests in a class, module or session Fixtures requiring network access depend on connectivity and are usually time-expensive to create. Extending the previous example, we -can add a ``scope='module'`` parameter to the +can add a ``scope="module"`` parameter to the :py:func:`@pytest.fixture <_pytest.python.fixture>` invocation to cause the decorated ``smtp`` fixture function to only be invoked once per test *module* (the default is to invoke once per test *function*).