chore: Patch out-of-date binary file
This commit is contained in:
parent
7ba16ae622
commit
3454f84e85
1 changed files with 5 additions and 0 deletions
|
@ -2173,6 +2173,11 @@ mod test {
|
||||||
|
|
||||||
let mut v = Vec::new();
|
let mut v = Vec::new();
|
||||||
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
|
||||||
|
v[4] = 20;
|
||||||
|
v[54] = 20;
|
||||||
|
|
||||||
assert_eq!(result.get_ref(), &v);
|
assert_eq!(result.get_ref(), &v);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue