From bd3c93f08672a38624cf755fe8a12d602beb75a9 Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Thu, 1 Jul 2021 20:23:11 +0900 Subject: [PATCH] Add expected test removal remainder --- runtime/src/bank.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/src/bank.rs b/runtime/src/bank.rs index da5e5c5353..4e246fb550 100644 --- a/runtime/src/bank.rs +++ b/runtime/src/bank.rs @@ -11769,6 +11769,7 @@ pub(crate) mod tests { assert_eq!(sample_sysvar.lamports(), excess_lamports); } + // this test can be removed after rent_for_sysvars activation on mainnet-beta #[test] fn test_no_deletion_due_to_rent_upon_rent_for_sysvar_activation() { solana_logger::setup(); @@ -11802,6 +11803,7 @@ pub(crate) mod tests { assert_eq!(bank2.get_program_accounts(&sysvar::id()).unwrap().len(), 8); } + // this test can be removed after rent_for_sysvars activation on mainnet-beta #[test] fn test_rent_for_sysvars_adjustment_minimum_genesis_set() { solana_logger::setup(); @@ -11873,6 +11875,7 @@ pub(crate) mod tests { } } + // this test can be removed after rent_for_sysvars activation on mainnet-beta #[test] fn test_rent_for_sysvars_adjustment_full_set() { solana_logger::setup();