Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Oct 23, 2024
1 parent 98efdc6 commit 52cc002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration_tests/test_ibc_rly.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def get_send_packet_seq(
events = parse_events_rpc(res["events"])
target = events.get("send_packet")
if target and target["packet_sequence"]:
return target["packet_sequence"]
return int(target["packet_sequence"])
return None


Expand Down Expand Up @@ -244,7 +244,7 @@ def test_ibc(ibc):
relayer = to_checksum_address(bech32_to_eth(relayer0))
cronos_addr = module_address("cronos")
transfer_addr = module_address("transfer")
seq = int(get_send_packet_seq(chainmain_cli))
seq = get_send_packet_seq(chainmain_cli)
expected = [
recv_packet(seq, relayer0, cronos_signer2, src_amount, src_denom),
denom_trace(denom),
Expand Down

0 comments on commit 52cc002

Please sign in to comment.