Create meaningful panic messages in ZipCrypto test

This commit is contained in:
Benjamin Richner 2020-06-23 21:35:59 +02:00
parent 4737f145ff
commit 9e2b14f368

View file

@ -50,10 +50,12 @@ fn encrypted_file() {
if let Err(error) = file {
match error {
zip::result::ZipError::PasswordRequired => (),
_ => panic!(),
_ => panic!(
"Expected PasswordRequired error when opening encrypted file without password"
),
}
} else {
panic!();
panic!("Error: Successfully opened encrypted file without password?!");
}
}
@ -64,10 +66,10 @@ fn encrypted_file() {
if let Err(error) = file {
match error {
zip::result::ZipError::InvalidPassword => (),
_ => panic!(),
_ => panic!("Expected InvalidPassword error when opening encrypted file with wrong password"),
}
} else {
panic!();
panic!("Error: Successfully opened encrypted file with wrong password?!");
}
}