From 7bba88ced77b7ab9597deeff0c63ed31b18dde7f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 8 Nov 2021 15:32:35 +0100 Subject: [PATCH] Update src/_pytest/nodes.py Co-authored-by: Bruno Oliveira --- src/_pytest/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/nodes.py b/src/_pytest/nodes.py index 7acc37a1c..d4505b6d6 100644 --- a/src/_pytest/nodes.py +++ b/src/_pytest/nodes.py @@ -669,7 +669,7 @@ class Item(Node): nodeid: Optional[str] = None, **kw, ) -> None: - # The first two arguments are intentionally passed postionally, + # The first two arguments are intentionally passed positionally, # to keep plugins who define a node type which inherits from # (pytest.Item, pytest.File) working (see issue #8435). # They can be made kwargs when the deprecation above is done.