fix: raw_value test options1.rs

This commit is contained in:
Dávid J. Zarándi 2024-07-01 22:25:53 +02:00 committed by GitHub
parent 18a9a2e791
commit eebe8267c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,9 +32,6 @@ mod tests {
#[test]
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!(maybe_icecream(12).unwrap(), 5);
}
}