Fix linter warnings
This commit is contained in:
parent
6dcadff21d
commit
6711ac91a8
1 changed files with 7 additions and 10 deletions
|
@ -157,17 +157,14 @@ fn check_zip_contents(
|
||||||
) {
|
) {
|
||||||
let mut archive = read_zip(zip_file).unwrap();
|
let mut archive = read_zip(zip_file).unwrap();
|
||||||
|
|
||||||
match expected_method {
|
if let Some(expected_method) = expected_method {
|
||||||
Some(method) => {
|
|
||||||
let file = archive.by_name(name).unwrap();
|
let file = archive.by_name(name).unwrap();
|
||||||
|
let real_method = file.compression();
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
method,
|
expected_method, real_method,
|
||||||
file.compression(),
|
|
||||||
"File does not have expected compression method"
|
"File does not have expected compression method"
|
||||||
)
|
);
|
||||||
}
|
|
||||||
None => {}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
check_zip_file_contents(&mut archive, name);
|
check_zip_file_contents(&mut archive, name);
|
||||||
|
|
Loading…
Add table
Reference in a new issue