We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d22f3cc commit 23e9ba7Copy full SHA for 23e9ba7
implementations/q460_lfu_cache/tests/proptest.rs
@@ -64,7 +64,7 @@ fn test_lfu_cache_with_operations(capacity: i32, operations: Vec<CacheOperation>
64
65
#[test]
66
fn test_lfu_cache_implementations() {
67
- let config = ProptestConfig::with_cases(20); // Number of test cases to generate
+ let config = ProptestConfig::with_cases(2); // Number of test cases to generate
68
proptest!(config, |(capacity in 1..=10_000i32, operations in operation_sequence_strategy())| {
69
test_lfu_cache_with_operations(capacity, operations);
70
});
0 commit comments