1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-07-13 01:20:42 +02:00

fix(quiz3): Second test is for odd numbers, not even. (#553)

This commit is contained in:
Ryan McQuen
2020-10-10 04:11:57 -07:00
committed by GitHub
parent 3be760dc38
commit 18e0bfef1d

View File

@ -20,7 +20,7 @@ mod tests {
} }
#[test] #[test]
fn is_false_when_even() { fn is_false_when_odd() {
assert!(); assert!();
} }
} }