diff --git a/src/problem_1735_count_ways_to_make_array_with_product/mod.rs b/src/problem_1735_count_ways_to_make_array_with_product/mod.rs index 5bb33871..7031c5d4 100644 --- a/src/problem_1735_count_ways_to_make_array_with_product/mod.rs +++ b/src/problem_1735_count_ways_to_make_array_with_product/mod.rs @@ -22,7 +22,7 @@ mod tests { ), ]; - for &(queries, expected) in &test_cases[3..] { + for (queries, expected) in test_cases { assert_eq!(S::ways_to_fill_array(queries.iter().map(Vec::from).collect()), expected); } }