We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14aec16 commit 15d1920Copy full SHA for 15d1920
tests/unittest_inference_calls.py
@@ -522,8 +522,8 @@ class B(A):
522
A.method(B()) #@
523
"""
524
)
525
- expected = ["A", "A", "B", "B", "B"]
526
- for node, expected in zip(nodes_, expected):
+ expected_names = ["A", "A", "B", "B", "B"]
+ for node, expected in zip(nodes_, expected_names):
527
assert isinstance(node, nodes.NodeNG)
528
inferred = node.inferred()
529
assert len(inferred) == 1
@@ -553,8 +553,8 @@ class B(A):
553
B.method() #@
554
555
556
- expected = ["A", "A", "B", "B"]
557
+ expected_names = ["A", "A", "B", "B"]
558
559
560
0 commit comments