From 331567a8d2ad45af3a2ffc4e48aacf57e22c4d7d Mon Sep 17 00:00:00 2001 From: ndk Date: Wed, 23 Oct 2024 13:48:16 +0300 Subject: [PATCH] removed extra namespace xcm::prelude:: --- .../collectives-polkadot/tests/location_conversion.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system-parachains/collectives/collectives-polkadot/tests/location_conversion.rs b/system-parachains/collectives/collectives-polkadot/tests/location_conversion.rs index 45feb648af..1f3d7d3710 100644 --- a/system-parachains/collectives/collectives-polkadot/tests/location_conversion.rs +++ b/system-parachains/collectives/collectives-polkadot/tests/location_conversion.rs @@ -24,9 +24,9 @@ const ALICE: [u8; 32] = [1u8; 32]; #[test] fn location_conversion_works() { - let alice_32 = xcm::prelude::AccountId32 { + let alice_32 = AccountId32 { network: None, - id: polkadot_core_primitives::AccountId::from(ALICE).into(), + id: AccountId::from(ALICE).into(), }; let bob_20 = AccountKey20 { network: None, key: [123u8; 20] };