From dbff6d11047985cd263a6eca29023c8801bb6382 Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Sat, 13 Aug 2022 09:12:14 +0100 Subject: [PATCH] fix test --- runtime/src/bank.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/bank.rs b/runtime/src/bank.rs index 763e2ca881dce3..036593c7153ccb 100644 --- a/runtime/src/bank.rs +++ b/runtime/src/bank.rs @@ -14832,7 +14832,7 @@ pub(crate) mod tests { .map(|_| bank.process_stale_slot_with_budget(0, force_to_return_alive_account)) .sum(); // consumed_budgets represents the count of alive accounts in the three slots 0,1,2 - assert_eq!(consumed_budgets, 10); + assert_eq!(consumed_budgets, 12); } #[test]