From 128ffbdf9bde3c3587391e5edcf74ecbc43e620c Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" Date: Fri, 10 Feb 2023 08:25:37 -0600 Subject: [PATCH] restore test to all slot combos (#30231) --- runtime/src/ancient_append_vecs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/ancient_append_vecs.rs b/runtime/src/ancient_append_vecs.rs index 7cccbe035b..4441d97616 100644 --- a/runtime/src/ancient_append_vecs.rs +++ b/runtime/src/ancient_append_vecs.rs @@ -1005,7 +1005,7 @@ pub mod tests { fn test_calc_ancient_slot_info_several() { let can_randomly_shrink = false; for alive in [true, false] { - for slots in 2..4 { + for slots in 0..4 { // 1_040_000 is big enough relative to page size to cause shrink ratio to be triggered for data_size in [None, Some(1_040_000)] { let (db, slot1) = create_db_with_storages_and_index(alive, slots, data_size);