File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,6 @@ The fixtures requested by ``test_foo`` will be instantiated in the following ord
307
307
308
308
1. ``s1 ``: is the highest-scoped fixture (``session ``).
309
309
2. ``m1 ``: is the second highest-scoped fixture (``module ``).
310
- because it is a dependency of ``f1 ``.
311
310
3. ``a1 ``: is a ``function ``-scoped ``autouse `` fixture: it will be instantiated before other fixtures
312
311
within the same scope.
313
312
4. ``f3 ``: is a ``function ``-scoped fixture, required by ``f1 ``: it needs to be instantiated at this point
@@ -501,7 +500,7 @@ of a fixture is needed multiple times in a single test. Instead of returning
501
500
data directly, the fixture instead returns a function which generates the data.
502
501
This function can then be called multiple times in the test.
503
502
504
- Factories can have have parameters as needed::
503
+ Factories can have parameters as needed::
505
504
506
505
@pytest.fixture
507
506
def make_customer_record():
You can’t perform that action at this time.
0 commit comments