chore: Remove a drop that can no longer be explicit

This commit is contained in:
Chris Hennick 2024-05-05 19:30:18 -07:00
parent 84aa6e8f11
commit b59515bbd7
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

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