From c604f3f0c52b51fc61ba7d208d522c2614aaa10d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 5 Feb 2021 17:47:37 +0100 Subject: [PATCH] doc: Remove confusing fixture sentence There is no previous `test_ehlo` example (it follows much later) - and the same thing is described further down in ""Requesting" fixtures" already. --- doc/en/fixture.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/doc/en/fixture.rst b/doc/en/fixture.rst index d72a0e619..6ffd77920 100644 --- a/doc/en/fixture.rst +++ b/doc/en/fixture.rst @@ -174,9 +174,6 @@ Back to fixtures "Fixtures", in the literal sense, are each of the **arrange** steps and data. They're everything that test needs to do its thing. -At a basic level, test functions request fixtures by declaring them as -arguments, as in the ``test_ehlo(smtp_connection):`` in the previous example. - In pytest, "fixtures" are functions you define that serve this purpose. But they don't have to be limited to just the **arrange** steps. They can provide the **act** step, as well, and this can be a powerful technique for designing more