chore: More patches to binary file

This commit is contained in:
Chris Hennick 2024-05-09 18:57:15 -07:00 committed by GitHub
parent 3454f84e85
commit 650dd9a71f
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -2175,8 +2175,10 @@ mod test {
v.extend_from_slice(include_bytes!("../tests/data/non_utf8.zip")); 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 // FIXME: Update the actual file once https://github.com/zip-rs/zip2/pull/106 is merged
v[4] = 20; v[4] = 10;
v[54] = 20; v[54] = 10;
v[108] = 10;
v[158] = 10;
assert_eq!(result.get_ref(), &v); assert_eq!(result.get_ref(), &v);
} }