summaryrefslogtreecommitdiff
path: root/exercises/collections/hashmap2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/collections/hashmap2.rs')
-rw-r--r--exercises/collections/hashmap2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/collections/hashmap2.rs b/exercises/collections/hashmap2.rs
index c8698fe..0abe19a 100644
--- a/exercises/collections/hashmap2.rs
+++ b/exercises/collections/hashmap2.rs
@@ -68,7 +68,7 @@ mod tests {
let mut basket = get_fruit_basket();
fruit_basket(&mut basket);
let count_fruit_kinds = basket.len();
- assert!(count_fruit_kinds == 5);
+ assert!(count_fruit_kinds >= 5);
}
#[test]