Skip to content

Commit

Permalink
style: Suppress Clippy warnings for octal-looking escapes
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0methean committed Jun 18, 2024
1 parent 4065f05 commit 24fc147
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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()));
Expand Down

0 comments on commit 24fc147

Please sign in to comment.