From d91459fc758cd91848ace87f7c4071a38433f647 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Thu, 30 Jan 2020 09:32:54 -0400 Subject: [PATCH] Reword fixture docs for clarity --- 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 2094027f3..bb1da8a03 100644 --- a/doc/en/fixture.rst +++ b/doc/en/fixture.rst @@ -849,7 +849,7 @@ Running this test will *skip* the invocation of ``data_set`` with value ``2``: Modularity: using fixtures from a fixture function ---------------------------------------------------------- -You can not only use fixtures in test functions but fixture functions +In additon to using fixtures in test functions, fixture functions can use other fixtures themselves. This contributes to a modular design of your fixtures and allows re-use of framework-specific fixtures across many projects. As a simple example, we can extend the previous example