diff options
| author | Niklas Anderson <nkanders@gmail.com> | 2019-10-25 14:27:24 -0700 |
|---|---|---|
| committer | Niklas Anderson <nkanders@gmail.com> | 2019-10-25 14:27:24 -0700 |
| commit | ead4f7af9e10e53418efdde5c359159347282afd (patch) | |
| tree | 66330abbb88abc97d9f504d23a04a10953a00c8d /exercises/error_handling/option1.rs | |
| parent | 4808b5b3ba33bf7fa01ef944b747a6dcb19d79c0 (diff) | |
fix(option1): Fix arguments passed to assert! macro
Diffstat (limited to 'exercises/error_handling/option1.rs')
| -rw-r--r-- | exercises/error_handling/option1.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/error_handling/option1.rs b/exercises/error_handling/option1.rs index d96a871..c5a4a64 100644 --- a/exercises/error_handling/option1.rs +++ b/exercises/error_handling/option1.rs @@ -24,7 +24,7 @@ mod tests { #[test] fn should_not_panic() { - assert!(pop_too_much(), true); + assert!(pop_too_much()); } } |
