Slightly stronger assertion

This commit is contained in:
Chris Hennick 2023-05-11 10:13:09 -07:00
parent 06b89f93ea
commit ebb4e01329
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -1257,7 +1257,7 @@ mod test {
"../tests/data/invalid_cde_number_of_files_allocation_smaller_offset.zip" "../tests/data/invalid_cde_number_of_files_allocation_smaller_offset.zip"
)); ));
let reader = ZipArchive::new(io::Cursor::new(v)); let reader = ZipArchive::new(io::Cursor::new(v));
assert!(reader.is_err() || reader.unwrap().file_names().next().is_none()); assert!(reader.is_err() || reader.unwrap().is_empty());
} }
/// test case to ensure we don't preemptively over allocate based on the /// test case to ensure we don't preemptively over allocate based on the