Fix Clippy issue

This commit is contained in:
Chris Hennick 2023-04-24 10:49:12 -07:00
parent 36e7b19969
commit 50b31c25af
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -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();