Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Nov 8, 2023
1 parent f090bb6 commit 260b0b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration_tests/test_ica_precompile.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ def check_status():
def assert_packet_result(event, channel_id, seq, status):
(logs) = event.getLogs()
assert len(logs) > 0
return logs[0].args == AttributeDict({"channel_id": channel_id, "seq": seq, "status": status})
expected = AttributeDict({"channel_id": channel_id, "seq": seq, "status": status})
return logs[0].args == expected


def test_sc_call(ibc):
Expand Down

0 comments on commit 260b0b4

Please sign in to comment.