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 <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2022-07-22 19:09:32 +10:00 committed by Marli Frost
parent b944bee72d
commit ef1846e121

View file

@ -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!(