From d0627122829c281e9b05feabd050b9b7b12a3265 Mon Sep 17 00:00:00 2001 From: Hugo Trentesaux <hugo@trentesaux.fr> Date: Tue, 5 Mar 2024 21:35:17 +0100 Subject: [PATCH] Revert "complete the test with refund check" This reverts commit edb681382905a388445f399e44d5e5184de73181. --- runtime/gdev/tests/balance_tests.rs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/runtime/gdev/tests/balance_tests.rs b/runtime/gdev/tests/balance_tests.rs index 9c4b35ad7..85c3b0ae3 100644 --- a/runtime/gdev/tests/balance_tests.rs +++ b/runtime/gdev/tests/balance_tests.rs @@ -19,7 +19,6 @@ mod common; use common::*; -use frame_support::traits::OnIdle; use frame_support::traits::StoredMap; use frame_support::{assert_noop, assert_ok}; use gdev_runtime::*; @@ -154,18 +153,11 @@ fn test_transfer_all_linked_no_member() { frame_system::RawOrigin::Signed(ferdie.clone()).into(), AccountKeyring::Bob.to_account_id().into(), false - )); + ),); assert_eq!(Balances::free_balance(ferdie.clone()), 0); // During reaping the account is unlinked assert!(frame_system::Pallet::<Runtime>::get(&ferdie) .linked_idty .is_none()); - - // call on_idle to activate refund system - Quota::on_idle(System::block_number(), Weight::from(1_000_000_000)); - - // check that one block later the account is still empty - run_to_block(2); - assert_eq!(Balances::free_balance(ferdie.clone()), 0); }) } -- GitLab