diff --git a/exercises/collections/hashmap2.rs b/exercises/collections/hashmap2.rs
index c8698fed..0abe19ab 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]