From 50b31c25af4eb55eb6778851b6805dcf53d20761 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 24 Apr 2023 10:49:12 -0700 Subject: [PATCH] Fix Clippy issue --- tests/end_to_end.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/end_to_end.rs b/tests/end_to_end.rs index f5c56f14..245ff6ba 100644 --- a/tests/end_to_end.rs +++ b/tests/end_to_end.rs @@ -67,9 +67,9 @@ fn copy() { #[test] fn append() { for &method in SUPPORTED_COMPRESSION_METHODS { - for shallow_copy in vec![false, true] { + for shallow_copy in &[false, true] { let mut file = &mut Cursor::new(Vec::new()); - write_test_archive(file, method, shallow_copy).expect("Couldn't write to test file"); + write_test_archive(file, method, *shallow_copy).expect("Couldn't write to test file"); { let mut zip = ZipWriter::new_append(&mut file).unwrap();