From e46fe6f55f850a4c25a562657487df96d4e05e8f Mon Sep 17 00:00:00 2001 From: Warren Date: Sun, 17 Mar 2024 23:48:53 +1100 Subject: [PATCH] doc: correct spelling --- src/_pytest/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/python.py b/src/_pytest/python.py index 3f8808949..b089e6504 100644 --- a/src/_pytest/python.py +++ b/src/_pytest/python.py @@ -1568,7 +1568,7 @@ def _get_fixtures_per_test(test: nodes.Item) -> Optional[List[FixtureDef[object] # is stored in the final position of the sequence; therefore, we # take the FixtureDef of the final override and add it to the list. # - # If there wasn't an overide, the final item will simply be the + # If there wasn't an override, the final item will simply be the # first item, as required. fixturedefs[-1] for argname, fixturedefs in sorted(name2fixturedefs.items())