diff --git a/tests/zip_crypto.rs b/tests/zip_crypto.rs index 9e91e1bd..4c4cc8b2 100644 --- a/tests/zip_crypto.rs +++ b/tests/zip_crypto.rs @@ -49,7 +49,6 @@ fn encrypting_file() { .unwrap(); archive.write_all(b"test").unwrap(); archive.finish().unwrap(); - drop(archive); let mut archive = zip::ZipArchive::new(Cursor::new(&mut buf)).unwrap(); let mut file = archive.by_index_decrypt(0, b"password").unwrap(); let mut buf = Vec::new();