test: Suppress needless_update for unit tests

This commit is contained in:
Chris Hennick 2024-06-14 00:03:37 -07:00
parent e555f8c770
commit 30bbd0f7c8
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -1926,6 +1926,8 @@ const EXTRA_FIELD_MAPPING: [u16; 48] = [
];
#[cfg(test)]
#[allow(unknown_lints)] // needless_update is new in clippy pre 1.29.0
#[allow(needless_update)] // So we can use the same FileOptions defs with and without zopfli_buffer_size
mod test {
use super::{FileOptions, ZipWriter};
use crate::compression::CompressionMethod;