diff options
| author | mo8it <mo8it@proton.me> | 2025-05-13 16:24:42 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2025-05-13 16:24:42 +0200 |
| commit | 9a3586878d73cede3258ce076c609324cef8cc07 (patch) | |
| tree | 6c7410a620c4092dd54456c1e16690fd0be66a4d /solutions | |
| parent | a99433c62dfe0557f8490ff677ecc4d2eac14ed5 (diff) | |
Sync solution
Diffstat (limited to 'solutions')
| -rw-r--r-- | solutions/09_strings/strings3.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/solutions/09_strings/strings3.rs b/solutions/09_strings/strings3.rs index a478e62..ee6b56a 100644 --- a/solutions/09_strings/strings3.rs +++ b/solutions/09_strings/strings3.rs @@ -26,6 +26,7 @@ mod tests { assert_eq!(trim_me("Hello! "), "Hello!"); assert_eq!(trim_me(" What's up!"), "What's up!"); assert_eq!(trim_me(" Hola! "), "Hola!"); + assert_eq!(trim_me("Hi!"), "Hi!"); } #[test] |
