Skip to content

Commit

Permalink
fix: remove unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscoaguirre committed Dec 1, 2024
1 parent 7d1fb3e commit 41af26e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,7 @@

#![cfg(test)]

use collectives_westend_runtime::{
xcm_config::LocationToAccountId, Block, Runtime, RuntimeCall, RuntimeOrigin,
};
use parachains_common::AccountId;
use sp_core::crypto::Ss58Codec;
use xcm::latest::prelude::*;
use xcm_runtime_apis::conversions::LocationToAccountHelper;

const ALICE: [u8; 32] = [1u8; 32];
use collectives_westend_runtime::Block, Runtime, RuntimeCall, RuntimeOrigin;

#[test]
fn xcm_payment_api_works() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,7 @@

#![cfg(test)]

use coretime_rococo_runtime::{
xcm_config::LocationToAccountId, Block, Runtime, RuntimeCall, RuntimeOrigin,
};
use parachains_common::AccountId;
use sp_core::crypto::Ss58Codec;
use xcm::latest::prelude::*;
use xcm_runtime_apis::conversions::LocationToAccountHelper;

const ALICE: [u8; 32] = [1u8; 32];
use coretime_rococo_runtime::Block, Runtime, RuntimeCall, RuntimeOrigin;

#[test]
fn xcm_payment_api_works() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,7 @@

#![cfg(test)]

use coretime_westend_runtime::{
xcm_config::LocationToAccountId, Block, Runtime, RuntimeCall, RuntimeOrigin,
};
use parachains_common::AccountId;
use sp_core::crypto::Ss58Codec;
use xcm::latest::prelude::*;
use xcm_runtime_apis::conversions::LocationToAccountHelper;

const ALICE: [u8; 32] = [1u8; 32];
use coretime_westend_runtime::Block, Runtime, RuntimeCall, RuntimeOrigin;

#[test]
fn xcm_payment_api_works() {
Expand Down
10 changes: 1 addition & 9 deletions cumulus/parachains/runtimes/people/people-rococo/tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,7 @@

#![cfg(test)]

use parachains_common::AccountId;
use people_rococo_runtime::{
xcm_config::LocationToAccountId, Block, Runtime, RuntimeCall, RuntimeOrigin,
};
use sp_core::crypto::Ss58Codec;
use xcm::latest::prelude::*;
use xcm_runtime_apis::conversions::LocationToAccountHelper;

const ALICE: [u8; 32] = [1u8; 32];
use people_rococo_runtime::Block, Runtime, RuntimeCall, RuntimeOrigin;

#[test]
fn xcm_payment_api_works() {
Expand Down

0 comments on commit 41af26e

Please sign in to comment.