Skip to content

Commit e8e7d44

Browse files
[7.2.x] made minor updates to fixtures docs (#10778)
Co-authored-by: Billy <[email protected]>
1 parent 2fd4549 commit e8e7d44

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/en/example/fixtures/test_fixtures_order_dependencies.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def b(a, order):
1717

1818

1919
@pytest.fixture
20-
def c(a, b, order):
20+
def c(b, order):
2121
order.append("c")
2222

2323

doc/en/reference/fixtures.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ For example:
335335

336336
.. literalinclude:: /example/fixtures/test_fixtures_order_dependencies.py
337337

338-
If we map out what depends on what, we get something that look like this:
338+
If we map out what depends on what, we get something that looks like this:
339339

340340
.. image:: /example/fixtures/test_fixtures_order_dependencies.*
341341
:align: center

0 commit comments

Comments
 (0)