summaryrefslogtreecommitdiff
path: root/tests/functional/n
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-04-10 17:01:15 +0200
committerGitHub <noreply@github.com>2021-04-10 17:01:15 +0200
commit078ebeab91722ed55a9ee49d0c2fbd9fd425421c (patch)
tree910ccfd00d2c89230afd02f1eeaef363780d9b26 /tests/functional/n
parentac02be7686bd928729f843e08421fb63e1c38d4b (diff)
downloadpylint-git-078ebeab91722ed55a9ee49d0c2fbd9fd425421c.tar.gz
Update ``astroid`` to 2.5.3 (#4334)
* Add test case for typing.Generic with ABCMeta
Diffstat (limited to 'tests/functional/n')
-rw-r--r--tests/functional/n/name/name_styles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/n/name/name_styles.py b/tests/functional/n/name/name_styles.py
index 99d806642..455ba759a 100644
--- a/tests/functional/n/name/name_styles.py
+++ b/tests/functional/n/name/name_styles.py
@@ -151,7 +151,7 @@ class FooEnum(Enum):
bad_enum_name = 2 # [invalid-name]
class Bar:
- """Class with class constants annotated with ClassVar."""
+ """Class with class variables annotated with ClassVar."""
CLASS_CONST: ClassVar[int] = 42
CLASS_CONST2: ClassVar = "const"
variable: ClassVar[str] = "invalid name"