From b59515bbd733d7f4c1f2a3120e18b8aa83e83ae5 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Sun, 5 May 2024 19:30:18 -0700 Subject: [PATCH] chore: Remove a drop that can no longer be explicit --- tests/zip_crypto.rs | 1 - 1 file changed, 1 deletion(-) 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();