From bbd7bc29851305e7ec228d3424d2d814f1e038f9 Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" <75863576+jeffwashington@users.noreply.github.com> Date: Wed, 22 Sep 2021 12:39:31 -0500 Subject: [PATCH] AcctIdx: Fix bad test (#20115) --- runtime/src/in_mem_accounts_index.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/src/in_mem_accounts_index.rs b/runtime/src/in_mem_accounts_index.rs index 93cf42c0f4..2297eca808 100644 --- a/runtime/src/in_mem_accounts_index.rs +++ b/runtime/src/in_mem_accounts_index.rs @@ -645,7 +645,8 @@ mod tests { BINS_FOR_TESTING, &Some(AccountsIndexConfig::default()), )); - InMemAccountsIndex::new(&holder, BINS_FOR_TESTING) + let bin = 0; + InMemAccountsIndex::new(&holder, bin) } #[test]