From 23afb520f03187df2ac247dc96ab5d3753bdd0c9 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 15 Nov 2024 16:26:05 +0100 Subject: [PATCH] plugin.py: Fix typo --- pytest_asyncio/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytest_asyncio/plugin.py b/pytest_asyncio/plugin.py index 1c81fee5..b4e6ab33 100644 --- a/pytest_asyncio/plugin.py +++ b/pytest_asyncio/plugin.py @@ -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