diff --git a/integration-tests/emulated/tests/collectives/collectives-polkadot/src/lib.rs b/integration-tests/emulated/tests/collectives/collectives-polkadot/src/lib.rs index 5283788004..112e7fc7f2 100644 --- a/integration-tests/emulated/tests/collectives/collectives-polkadot/src/lib.rs +++ b/integration-tests/emulated/tests/collectives/collectives-polkadot/src/lib.rs @@ -17,9 +17,10 @@ pub use xcm::{prelude::*, v3}; // Cumulus -pub use emulated_integration_tests_common::{accounts::ALICE, xcm_emulator::{ - assert_expected_events, bx, Chain, RelayChain as Relay, TestExt, -}}; +pub use emulated_integration_tests_common::{ + accounts::ALICE, + xcm_emulator::{assert_expected_events, bx, Chain, RelayChain as Relay, TestExt}, +}; pub use polkadot_system_emulated_network::{ asset_hub_polkadot_emulated_chain::AssetHubPolkadotParaPallet as AssetHubPolkadotPallet, collectives_polkadot_emulated_chain::CollectivesPolkadotParaPallet as CollectivesPolkadotPallet, diff --git a/integration-tests/emulated/tests/collectives/collectives-polkadot/src/tests/fellowship_salary.rs b/integration-tests/emulated/tests/collectives/collectives-polkadot/src/tests/fellowship_salary.rs index 16ab13a9d2..25115e9bd2 100644 --- a/integration-tests/emulated/tests/collectives/collectives-polkadot/src/tests/fellowship_salary.rs +++ b/integration-tests/emulated/tests/collectives/collectives-polkadot/src/tests/fellowship_salary.rs @@ -15,12 +15,15 @@ use crate::*; use collectives_polkadot_runtime::fellowship::FellowshipSalaryPaymaster; -use frame_support::{assert_ok, traits::{ - fungibles::{Create, Mutate}, - tokens::Pay, -}}; -use sp_core::crypto::Ss58Codec; +use frame_support::{ + assert_ok, + traits::{ + fungibles::{Create, Mutate}, + tokens::Pay, + }, +}; use parachains_common::AccountId; +use sp_core::crypto::Ss58Codec; #[test] fn pay_salary() {