From 24fc14701b9f8ff9493ad13ee8339fbdae87f872 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Mon, 17 Jun 2024 18:18:57 -0700 Subject: [PATCH] style: Suppress Clippy warnings for octal-looking escapes --- src/write.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/write.rs b/src/write.rs index 32d7ad52..8c81c9dc 100644 --- a/src/write.rs +++ b/src/write.rs @@ -3102,6 +3102,7 @@ mod test { } #[test] + #[allow(clippy::octal_escapes)] fn test_fuzz_crash_2024_06_17a() -> ZipResult<()> { let mut writer = ZipWriter::new(Cursor::new(Vec::new())); writer.set_flush_on_finish_file(false); @@ -3136,6 +3137,7 @@ mod test { } #[test] + #[allow(clippy::octal_escapes)] #[cfg(feature = "bzip2")] fn test_fuzz_crash_2024_06_17b() -> ZipResult<()> { let mut writer = ZipWriter::new(Cursor::new(Vec::new()));