Skip to content

Commit

Permalink
fix flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
areshand committed Dec 4, 2024
1 parent 7f1f7df commit bb64464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/aptosdb/src/state_store/state_store_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ proptest! {
(input, batch1_size) in hash_map(any::<StateKey>(), any::<StateValue>(), 2..1000)
.prop_flat_map(|input| {
let len = input.len();
(Just(input), 2..len)
(Just(input), 2..=len)
})
) {
let tmp_dir1 = TempPath::new();
Expand Down

0 comments on commit bb64464

Please sign in to comment.