From ead4f7af9e10e53418efdde5c359159347282afd Mon Sep 17 00:00:00 2001 From: Niklas Anderson Date: Fri, 25 Oct 2019 14:27:24 -0700 Subject: [PATCH] fix(option1): Fix arguments passed to assert! macro --- exercises/error_handling/option1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } }