summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/functional/n/not_callable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/n/not_callable.py b/tests/functional/n/not_callable.py
index b0816c0f8..a0411d39e 100644
--- a/tests/functional/n/not_callable.py
+++ b/tests/functional/n/not_callable.py
@@ -144,7 +144,7 @@ Named = typing.NamedTuple("Named", [("foo", int), ("bar", int)])
named = Named(1, 2)
-# NamedTuple is callable, even if it aliased to a attribute
+# NamedTuple is callable, even if it aliased to an attribute
# See https://github.com/pylint-dev/pylint/issues/1730
class TestNamedTuple:
def __init__(self, field: str) -> None: