Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pytest_asyncio/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -792,9 +792,9 @@ def pytest_fixture_setup(

def _add_finalizers(fixturedef: FixtureDef, *finalizers: Callable[[], object]) -> None:
"""
Regsiters the specified fixture finalizers in the fixture.
Registers the specified fixture finalizers in the fixture.

Finalizers need to specified in the exact order in which they should be invoked.
Finalizers need to be specified in the exact order in which they should be invoked.

:param fixturedef: Fixture definition which finalizers should be added to
:param finalizers: Finalizers to be added
Expand Down