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

fix(option1): Fix arguments passed to assert! macro (#222)

fix(option1): Fix arguments passed to assert! macro
This commit is contained in:
marisa
2019-10-26 00:27:40 +02:00
committed by GitHub

View File

@ -24,7 +24,7 @@ mod tests {
#[test]
fn should_not_panic() {
assert!(pop_too_much(), true);
assert!(pop_too_much());
}
}