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
1 changed files with 1 additions and 1 deletions

View File

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