Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Fix another assert
Browse files Browse the repository at this point in the history
  • Loading branch information
bkontur committed Aug 7, 2023
1 parent 80f31ec commit c1f882d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xcm/pallet-xcm/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -583,9 +583,9 @@ fn reserve_transfer_assets_with_paid_router_works() {
vec![(
Parachain(PARA_ID).into(),
Xcm(vec![
ReserveAssetDeposited((Parent, SEND_AMOUNT).into()),
ReserveAssetDeposited((Parent, SEND_AMOUNT - xcm_router_fee_amount).into()),
ClearOrigin,
buy_limited_execution((Parent, SEND_AMOUNT), Weight::from_parts(4000, 4000)),
buy_limited_execution((Parent, SEND_AMOUNT - xcm_router_fee_amount), Weight::from_parts(4000, 4000)),
DepositAsset { assets: AllCounted(1).into(), beneficiary: dest },
]),
)]
Expand Down

0 comments on commit c1f882d

Please sign in to comment.