Skip to content

Commit

Permalink
fix: fix cargo test
Browse files Browse the repository at this point in the history
  • Loading branch information
liyukun committed Dec 13, 2023
1 parent 550fe18 commit ac9850f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions axon/src/handler/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ fn test_channel_packet_commitment_ping_pong() {
ack: None,
};
let a_packet_args = PacketArgs {
ibc_handler_address: [0u8; 20],
ibc_handler_address: a_channel_args.ibc_handler_address,
channel_id: a_channel_args.channel_id,
port_id: a_channel_args.port_id,
sequence: 1,
Expand All @@ -1129,7 +1129,7 @@ fn test_channel_packet_commitment_ping_pong() {
let mut b_packet = packet.clone();
b_packet.status = PacketStatus::Recv;
let b_packet_args = PacketArgs {
ibc_handler_address: [0u8; 20],
ibc_handler_address: b_channel_args.ibc_handler_address,
channel_id: b_channel_args.channel_id,
port_id: b_channel_args.port_id,
sequence: 1,
Expand Down

0 comments on commit ac9850f

Please sign in to comment.