From 3454f84e8530061e5f0d96b2b0f2627dc83a92b2 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 9 May 2024 18:50:49 -0700 Subject: [PATCH] chore: Patch out-of-date binary file --- src/write.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/write.rs b/src/write.rs index fe0074cd..2ad8a44a 100644 --- a/src/write.rs +++ b/src/write.rs @@ -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); }