Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscoaguirre committed Mar 4, 2024
1 parent f166072 commit 25cd3aa
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,11 @@ fn assets_can_be_claimed() {
let amount = ExistentialDeposit::get();
let assets: Assets = (Parent, amount).into();

test_parachain_can_claim_assets!(AssetHubKusama, RuntimeCall, NetworkId::Kusama, assets, amount);
test_parachain_can_claim_assets!(
AssetHubKusama,
RuntimeCall,
NetworkId::Kusama,
assets,
amount
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,11 @@ fn assets_can_be_claimed() {
let amount = ExistentialDeposit::get();
let assets: Assets = (Parent, amount).into();

test_parachain_can_claim_assets!(AssetHubPolkadot, RuntimeCall, NetworkId::Polkadot, assets, amount);
test_parachain_can_claim_assets!(
AssetHubPolkadot,
RuntimeCall,
NetworkId::Polkadot,
assets,
amount
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,11 @@ fn assets_can_be_claimed() {
let amount = ExistentialDeposit::get();
let assets: Assets = (Parent, amount).into();

test_parachain_can_claim_assets!(AssetHubKusama, RuntimeCall, NetworkId::Kusama, assets, amount);
test_parachain_can_claim_assets!(
AssetHubKusama,
RuntimeCall,
NetworkId::Kusama,
assets,
amount
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,11 @@ fn assets_can_be_claimed() {
let amount = ExistentialDeposit::get();
let assets: Assets = (Parent, amount).into();

test_parachain_can_claim_assets!(AssetHubPolkadot, RuntimeCall, NetworkId::Polkadot, assets, amount);
test_parachain_can_claim_assets!(
AssetHubPolkadot,
RuntimeCall,
NetworkId::Polkadot,
assets,
amount
);
}

0 comments on commit 25cd3aa

Please sign in to comment.