From 27341d17fa5add72e514a00a74c44ae4d66be876 Mon Sep 17 00:00:00 2001 From: Lewis Belcher Date: Mon, 23 Mar 2020 09:02:06 +0100 Subject: [PATCH] Update fixture.rst Fix up some mangled wording. --- 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 fe69109a7..925a4b559 100644 --- a/doc/en/fixture.rst +++ b/doc/en/fixture.rst @@ -415,7 +415,7 @@ Order: Higher-scoped fixtures are instantiated first -Within a function request for features, fixture of higher-scopes (such as ``session``) are instantiated first than +Within a function request for fixtures, those of higher-scopes (such as ``session``) are instantiated before lower-scoped fixtures (such as ``function`` or ``class``). The relative order of fixtures of same scope follows the declared order in the test function and honours dependencies between fixtures. Autouse fixtures will be instantiated before explicitly used fixtures.