fix: cargo clippy error

This commit is contained in:
anatawa12 2023-10-13 21:49:41 +09:00
parent ffbf5f7b58
commit d6fcd355b8
No known key found for this signature in database
GPG key ID: 9CA909848B8E4EA6
2 changed files with 3 additions and 3 deletions

View file

@ -1275,9 +1275,9 @@ impl<W: Write + Seek> GenericZipWriter<W> {
}
#[cfg(feature = "deflate64")]
CompressionMethod::Deflate64 => {
return Err(ZipError::UnsupportedArchive(
Err(ZipError::UnsupportedArchive(
"Compressing Deflate64 is not supported",
));
))
}
#[cfg(feature = "bzip2")]
CompressionMethod::Bzip2 => {

View file

@ -1,7 +1,7 @@
#![cfg(feature = "deflate64")]
use std::io::{self, Read};
use zip::ZipArchive;
use zip_next::ZipArchive;
#[test]
fn decompress_deflate64() {