From cae144b2c0ea9f7bbe38d2296e7b0e124264b770 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Mon, 29 Apr 2024 13:33:53 -0700 Subject: [PATCH] style: fix unused-variable warning for test Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> --- src/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 7c5a4f74..0051f253 100644 --- a/src/write.rs +++ b/src/write.rs @@ -2215,6 +2215,6 @@ mod test { writer.start_file("", options).unwrap(); writer.write_all(&[255, 255, 44, 255, 0]).unwrap(); let written = writer.finish().unwrap(); - let new_writer = ZipWriter::new_append(written).unwrap(); + let _ = ZipWriter::new_append(written).unwrap(); } }