diff options
| author | mo8it <mo8it@proton.me> | 2024-05-22 15:13:18 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-05-22 15:13:18 +0200 |
| commit | 7cdf6b79429428e944b440eb713e711d844a92d7 (patch) | |
| tree | 721e17fd35d3073068023870ed42ff4439c21fae /exercises/03_if/if3.rs | |
| parent | c8ad6c3960b4bec44a610cc144e6b635bffcbc31 (diff) | |
Add missing semicolons
Diffstat (limited to 'exercises/03_if/if3.rs')
| -rw-r--r-- | exercises/03_if/if3.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/exercises/03_if/if3.rs b/exercises/03_if/if3.rs index ff6fee6..d3e4b06 100644 --- a/exercises/03_if/if3.rs +++ b/exercises/03_if/if3.rs @@ -34,21 +34,21 @@ mod tests { #[test] fn gopher_lives_in_burrow() { - assert_eq!(animal_habitat("gopher"), "Burrow") + assert_eq!(animal_habitat("gopher"), "Burrow"); } #[test] fn snake_lives_in_desert() { - assert_eq!(animal_habitat("snake"), "Desert") + assert_eq!(animal_habitat("snake"), "Desert"); } #[test] fn crab_lives_on_beach() { - assert_eq!(animal_habitat("crab"), "Beach") + assert_eq!(animal_habitat("crab"), "Beach"); } #[test] fn unknown_animal() { - assert_eq!(animal_habitat("dinosaur"), "Unknown") + assert_eq!(animal_habitat("dinosaur"), "Unknown"); } } |
