restore test to all slot combos (#30231)

This commit is contained in:
Jeff Washington (jwash) 2023-02-10 08:25:37 -06:00 committed by GitHub
parent 3e6162e69e
commit 128ffbdf9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);