From 3b5e708f54a4252d92975dba91e42cfed200b7d0 Mon Sep 17 00:00:00 2001 From: Nicholas Gates Date: Thu, 25 Apr 2024 12:09:26 +0100 Subject: [PATCH] Clippy --- vortex-ipc/src/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vortex-ipc/src/reader.rs b/vortex-ipc/src/reader.rs index 90c31586a7..60a9d87656 100644 --- a/vortex-ipc/src/reader.rs +++ b/vortex-ipc/src/reader.rs @@ -290,7 +290,7 @@ mod tests { } // Push some extra bytes to test that the reader is well-behaved and doesn't read past the // end of the stream. - cursor.write(b"hello").unwrap(); + let _ = cursor.write(b"hello").unwrap(); cursor.set_position(0); {