From d483209325ee88d955d933e4fd0a9d1b008e291a Mon Sep 17 00:00:00 2001 From: clabby Date: Sat, 12 Oct 2024 23:53:09 -0400 Subject: [PATCH] chore(host): Reduce disk<->mem KV proptest runs --- bin/host/src/kv/disk.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/host/src/kv/disk.rs b/bin/host/src/kv/disk.rs index c47e9c7c0..70d878663 100644 --- a/bin/host/src/kv/disk.rs +++ b/bin/host/src/kv/disk.rs @@ -75,10 +75,13 @@ mod test { arbitrary::any, collection::{hash_map, vec}, proptest, + test_runner::Config, }; use std::env::temp_dir; proptest! { + #![proptest_config(Config::with_cases(16))] + /// Test that converting from a [DiskKeyValueStore] to a [MemoryKeyValueStore] is lossless. #[test] fn convert_disk_kv_to_mem_kv(k_v in hash_map(any::<[u8; 32]>(), vec(any::(), 0..128), 1..128)) {