Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Fix breaking test
Browse files Browse the repository at this point in the history
  • Loading branch information
yrong committed Apr 11, 2024
1 parent 87ed097 commit 0ea24a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/snowbridge/pallets/inbound-queue/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ fn test_convert_transact() {
let instructions = xcm.into_inner();
assert_eq!(instructions.len(), 7);
assert_eq!(dest_fee, fee.into());
let transact = instructions.get(2).unwrap().clone();
let transact = instructions.get(5).unwrap().clone();
let expected =
Transact { origin_kind, require_weight_at_most: weight_at_most, call: payload.into() };
assert_eq!(transact, expected);
Expand Down

0 comments on commit 0ea24a4

Please sign in to comment.