From c4c6ec9e7c36f1a426a014cc28ef8c509a9ae070 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Wed, 1 Feb 2023 18:03:03 +0000 Subject: [PATCH] fix: clippy --- src/read.rs | 7 +++---- src/read/stream.rs | 2 +- tests/issue_234.rs | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/read.rs b/src/read.rs index ccd43baf..b702b4f2 100644 --- a/src/read.rs +++ b/src/read.rs @@ -1004,10 +1004,9 @@ impl<'a> Drop for ZipFile<'a> { match reader.read(&mut buffer) { Ok(0) => break, Ok(_) => (), - Err(e) => panic!( - "Could not consume all of the output of the current ZipFile: {:?}", - e - ), + Err(e) => { + panic!("Could not consume all of the output of the current ZipFile: {e:?}") + } } } } diff --git a/src/read/stream.rs b/src/read/stream.rs index 2ed97a6d..5a01b23f 100644 --- a/src/read/stream.rs +++ b/src/read/stream.rs @@ -95,7 +95,7 @@ impl ZipStreamReader { use std::os::unix::fs::PermissionsExt; if let Some(mode) = metadata.unix_mode() { - fs::set_permissions(&outpath, fs::Permissions::from_mode(mode))?; + fs::set_permissions(outpath, fs::Permissions::from_mode(mode))?; } } diff --git a/tests/issue_234.rs b/tests/issue_234.rs index bd01d1d0..f8c1d2c8 100644 --- a/tests/issue_234.rs +++ b/tests/issue_234.rs @@ -26,6 +26,6 @@ fn invalid_header() { let archive = zip::ZipArchive::new(reader); match archive { Err(ZipError::InvalidArchive(_)) => {} - value => panic!("Unexpected value: {:?}", value), + value => panic!("Unexpected value: {value:?}"), } }