From 9e2b14f368eb6c8285b661ebcaa43c04b7da560f Mon Sep 17 00:00:00 2001 From: Benjamin Richner Date: Tue, 23 Jun 2020 21:35:59 +0200 Subject: [PATCH] Create meaningful panic messages in ZipCrypto test --- tests/zip_crypto.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/zip_crypto.rs b/tests/zip_crypto.rs index 0aa7c64b..b6a8e93b 100644 --- a/tests/zip_crypto.rs +++ b/tests/zip_crypto.rs @@ -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?!"); } }