style: Merge patches from code into non_utf8.zip

This commit is contained in:
Chris Hennick 2024-05-10 09:01:17 -07:00
parent 9fa26892fd
commit 8eb5a75a87
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 1 additions and 7 deletions

View file

@ -2168,19 +2168,13 @@ mod test {
let filename = unsafe { String::from_utf8_unchecked(vec![147, 250, 149, 182]) };
writer.start_file(filename, options).unwrap();
writer.write_all(b"encoding SHIFT_JIS").unwrap();
let result = writer.finish().unwrap();
assert_eq!(result.get_ref().len(), 224);
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] = 10;
v[54] = 10;
v[108] = 10;
v[158] = 10;
assert_eq!(result.get_ref(), &v);
}

Binary file not shown.