1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-26 04:22:03 +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
commit 4c2cf6da75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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