Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 0ea24a4

Browse files
committed
Fix breaking test
1 parent 87ed097 commit 0ea24a4

File tree

1 file changed

+1
-1
lines changed
  • bridges/snowbridge/pallets/inbound-queue/src

1 file changed

+1
-1
lines changed

bridges/snowbridge/pallets/inbound-queue/src/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ fn test_convert_transact() {
269269
let instructions = xcm.into_inner();
270270
assert_eq!(instructions.len(), 7);
271271
assert_eq!(dest_fee, fee.into());
272-
let transact = instructions.get(2).unwrap().clone();
272+
let transact = instructions.get(5).unwrap().clone();
273273
let expected =
274274
Transact { origin_kind, require_weight_at_most: weight_at_most, call: payload.into() };
275275
assert_eq!(transact, expected);

0 commit comments

Comments
 (0)