chore: Patch out-of-date binary file

This commit is contained in:
Chris Hennick 2024-05-09 18:50:49 -07:00 committed by GitHub
parent 7ba16ae622
commit 3454f84e85
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -2173,6 +2173,11 @@ mod test {
let mut v = Vec::new();
v.extend_from_slice(include_bytes!("../tests/data/non_utf8.zip"));
// FIXME: Update the actual file once https://github.com/zip-rs/zip2/pull/106 is merged
v[4] = 20;
v[54] = 20;
assert_eq!(result.get_ref(), &v);
}