diff --git a/exercises/options/options1.rs b/exercises/options/options1.rs index d1735c2f..e0e2611c 100644 --- a/exercises/options/options1.rs +++ b/exercises/options/options1.rs @@ -30,6 +30,6 @@ mod tests { fn raw_value() { // TODO: Fix this test. How do you get at the value contained in the Option? let icecreams = maybe_icecream(12); - assert_eq!(icecreams, 5); + assert_eq!(icecreams, Some(5)); } }