minor updates to fixtures docs

This commit is contained in:
Billy Kern 2023-02-11 00:14:19 -05:00
parent 5e1c3d2477
commit 215b46dafb
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ def b(a, order):
@pytest.fixture
def c(a, b, order):
def c(b, order):
order.append("c")

View File

@ -335,7 +335,7 @@ For example:
.. literalinclude:: /example/fixtures/test_fixtures_order_dependencies.py
If we map out what depends on what, we get something that look like this:
If we map out what depends on what, we get something that looks like this:
.. image:: /example/fixtures/test_fixtures_order_dependencies.*
:align: center