This commit is contained in:
markharley12 2024-12-14 08:16:08 +09:00 committed by GitHub
commit 67b52a7ff6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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);
} }