summaryrefslogtreecommitdiff
path: root/tests/functional/u/undefined
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2022-01-30 01:09:40 -0500
committerGitHub <noreply@github.com>2022-01-30 07:09:40 +0100
commit8b0b573bd8d82822834e7a16ae5546561819aa97 (patch)
treea0e4f5e9ac757dc7a5b8953580f4c7ded05ad5a7 /tests/functional/u/undefined
parent6ad1ff3f98e75a4d36d5ef7785141071f528221e (diff)
downloadpylint-git-8b0b573bd8d82822834e7a16ae5546561819aa97.tar.gz
Remove moot TODO (#5747)
Changing the message type occurred in 0fb6a120c6f0fbc94e305542fe29e790274be096 and updating this unit test to match took place in fa2b6ceca796311a918e28770d101b53a43f84f3.
Diffstat (limited to 'tests/functional/u/undefined')
-rw-r--r--tests/functional/u/undefined/undefined_variable_py38.py3
-rw-r--r--tests/functional/u/undefined/undefined_variable_py38.txt4
2 files changed, 3 insertions, 4 deletions
diff --git a/tests/functional/u/undefined/undefined_variable_py38.py b/tests/functional/u/undefined/undefined_variable_py38.py
index 6e640421b..f23413543 100644
--- a/tests/functional/u/undefined/undefined_variable_py38.py
+++ b/tests/functional/u/undefined/undefined_variable_py38.py
@@ -14,7 +14,7 @@ def typing_and_assignment_expression():
def typing_and_self_referencing_assignment_expression():
"""The variable gets assigned in an assignment expression that references itself"""
var: int
- if (var := var ** 2): # false negative--walrus operator!
+ if (var := var ** 2): # false negative: https://github.com/PyCQA/pylint/issues/5653
print(var)
@@ -128,7 +128,6 @@ def type_annotation_unused_after_comprehension():
def type_annotation_used_improperly_after_comprehension():
- # TO-DO follow up in https://github.com/PyCQA/pylint/issues/5713
"""https://github.com/PyCQA/pylint/issues/5654"""
my_int: int
_ = [print(sep=my_int, end=my_int) for my_int in range(10)]
diff --git a/tests/functional/u/undefined/undefined_variable_py38.txt b/tests/functional/u/undefined/undefined_variable_py38.txt
index 8969423ad..43a2b6829 100644
--- a/tests/functional/u/undefined/undefined_variable_py38.txt
+++ b/tests/functional/u/undefined/undefined_variable_py38.txt
@@ -3,5 +3,5 @@ undefined-variable:50:6:50:22::Undefined variable 'again_no_default':UNDEFINED
undefined-variable:76:6:76:19::Undefined variable 'else_assign_1':INFERENCE
undefined-variable:99:6:99:19::Undefined variable 'else_assign_2':INFERENCE
unused-variable:126:4:126:10:type_annotation_unused_after_comprehension:Unused variable 'my_int':UNDEFINED
-used-before-assignment:135:10:135:16:type_annotation_used_improperly_after_comprehension:Using variable 'my_int' before assignment:HIGH
-used-before-assignment:142:10:142:16:type_annotation_used_improperly_after_comprehension_2:Using variable 'my_int' before assignment:HIGH
+used-before-assignment:134:10:134:16:type_annotation_used_improperly_after_comprehension:Using variable 'my_int' before assignment:HIGH
+used-before-assignment:141:10:141:16:type_annotation_used_improperly_after_comprehension_2:Using variable 'my_int' before assignment:HIGH