Compare commits

...

2 commits

Author SHA1 Message Date
markharley12 b3604b6c32
Merge 2be69b0f8b into d07de879a7 2024-12-11 12:28:26 +05:30
markharley12 2be69b0f8b fix for a couple of small issues I came accross whilst doing the exercise 2024-11-15 20:44:38 +00:00
2 changed files with 4 additions and 4 deletions

View file

@ -46,7 +46,7 @@ mod tests {
// Don't modify this function! // Don't modify this function!
fn get_fruit_basket() -> HashMap<Fruit, u32> { fn get_fruit_basket() -> HashMap<Fruit, u32> {
let content = [(Fruit::Apple, 4), (Fruit::Mango, 2), (Fruit::Lychee, 5)]; let content = [(Fruit::Apple, 4), (Fruit::Mango, 2), (Fruit::Lychee, 5)];
HashMap::from_iter(content) HashMap::from(content)
} }
#[test] #[test]
@ -89,7 +89,7 @@ mod tests {
for fruit_kind in fruit_kinds { for fruit_kind in fruit_kinds {
let Some(amount) = basket.get(&fruit_kind) else { let Some(amount) = basket.get(&fruit_kind) else {
panic!("Fruit kind {fruit_kind:?} was not found in basket"); panic!("Fruit kind {:?} was not found in basket", fruit_kind);
}; };
assert!(*amount > 0); assert!(*amount > 0);
} }

View file

@ -45,7 +45,7 @@ mod tests {
// Don't modify this function! // Don't modify this function!
fn get_fruit_basket() -> HashMap<Fruit, u32> { fn get_fruit_basket() -> HashMap<Fruit, u32> {
let content = [(Fruit::Apple, 4), (Fruit::Mango, 2), (Fruit::Lychee, 5)]; let content = [(Fruit::Apple, 4), (Fruit::Mango, 2), (Fruit::Lychee, 5)];
HashMap::from_iter(content) HashMap::from(content)
} }
#[test] #[test]
@ -88,7 +88,7 @@ mod tests {
for fruit_kind in fruit_kinds { for fruit_kind in fruit_kinds {
let Some(amount) = basket.get(&fruit_kind) else { let Some(amount) = basket.get(&fruit_kind) else {
panic!("Fruit kind {fruit_kind:?} was not found in basket"); panic!("Fruit kind {:?} was not found in basket", fruit_kind);
}; };
assert!(*amount > 0); assert!(*amount > 0);
} }