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 dc65e7e commit daef929
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,5 @@ fn assets_can_be_claimed() {
let amount = ExistentialDeposit::get();
let assets: Assets = (Parent, amount).into();

test_chain_can_claim_assets!(
AssetHubKusama,
RuntimeCall,
NetworkId::Kusama,
assets,
amount
);
test_chain_can_claim_assets!(AssetHubKusama, RuntimeCall, NetworkId::Kusama, assets, amount);
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.

mod claim_assets;
mod reserve_transfer;
mod send;
mod set_xcm_versions;
mod swap;
mod teleport;
mod claim_assets;

use crate::*;
emulated_integration_tests_common::include_penpal_create_foreign_asset_on_asset_hub!(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.

mod claim_assets;
mod fellowship_treasury;
mod reserve_transfer;
mod send;
mod set_xcm_versions;
mod teleport;
mod treasury;
mod claim_assets;

use crate::*;
emulated_integration_tests_common::include_penpal_create_foreign_asset_on_asset_hub!(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,5 @@ fn assets_can_be_claimed() {
let amount = ExistentialDeposit::get();
let assets: Assets = (Parent, amount).into();

test_chain_can_claim_assets!(
AssetHubKusama,
RuntimeCall,
NetworkId::Kusama,
assets,
amount
);
test_chain_can_claim_assets!(AssetHubKusama, RuntimeCall, NetworkId::Kusama, assets, amount);
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
use crate::*;

mod asset_transfers;
mod claim_assets;
mod send_xcm;
mod teleport;
mod claim_assets;

pub(crate) fn asset_hub_polkadot_location() -> Location {
Location::new(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
use crate::*;

mod asset_transfers;
mod claim_assets;
mod send_xcm;
mod teleport;
mod claim_assets;

pub(crate) fn asset_hub_kusama_location() -> Location {
Location::new(
Expand Down

0 comments on commit daef929

Please sign in to comment.