Skip to content

Commit

Permalink
Satisfy naming convention?
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Jul 5, 2023
1 parent 354178d commit 19c1cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -1473,7 +1473,7 @@ def get_context_data(self, **kwargs):
def test_name_repeat_inference(self) -> None:
node = extract_node("print")
context = InferenceContext()
_inferred = next(node.infer(context=context))
_ = next(node.infer(context=context))
with pytest.raises(InferenceError):
next(node.infer(context=context))

Expand Down

0 comments on commit 19c1cb7

Please sign in to comment.