From ef1846e121a918b7360d1318acd13ce4c6250ac7 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Fri, 22 Jul 2022 19:09:32 +1000 Subject: [PATCH] Rm `stream::tests::zip64_with_leading_junk` As in streaming mode, there is no way to ignore the leading junk. Signed-off-by: Jiahao XU --- src/read/stream.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/read/stream.rs b/src/read/stream.rs index 0ed8d1f0..38854440 100644 --- a/src/read/stream.rs +++ b/src/read/stream.rs @@ -266,17 +266,6 @@ mod test { .unwrap_err(); } - #[test] - fn zip64_with_leading_junk() { - let reader = ZipStreamReader::new(io::Cursor::new(include_bytes!( - "../../tests/data/zip64_demo.zip" - ))); - let mut v = CounterVisitor::default(); - reader.visit(&mut v).unwrap(); - - assert_eq!(v, CounterVisitor(1, 1)); - } - #[test] fn zip_contents() { let reader = ZipStreamReader::new(io::Cursor::new(include_bytes!(