From b2c4ed9a2b22b6f6f5af6975f11d9fee37e93579 Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Fri, 21 Dec 2018 17:53:28 -0500 Subject: [PATCH] Remove an extraneous comma from the docs. Signed-off-by: Randy Barlow --- 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 e70787a62..133901dde 100644 --- a/doc/en/fixture.rst +++ b/doc/en/fixture.rst @@ -804,7 +804,7 @@ different ``App`` instances and respective smtp servers. There is no need for the ``app`` fixture to be aware of the ``smtp_connection`` parametrization because pytest will fully analyse the fixture dependency graph. -Note, that the ``app`` fixture has a scope of ``module`` and uses a +Note that the ``app`` fixture has a scope of ``module`` and uses a module-scoped ``smtp_connection`` fixture. The example would still work if ``smtp_connection`` was cached on a ``session`` scope: it is fine for fixtures to use "broader" scoped fixtures but not the other way round: