This commit is contained in:
Chris Hennick 2023-05-27 17:05:49 -07:00
parent f46a0055ad
commit d2e2b54625
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -176,12 +176,12 @@ impl arbitrary::Arbitrary<'_> for FileOptions {
options.zopfli_buffer_size = Some(1 << u.int_in_range(9..=30)?); options.zopfli_buffer_size = Some(1 << u.int_in_range(9..=30)?);
} }
} }
}, }
Stored => { Stored => {
if bool::arbitrary(u)? { if bool::arbitrary(u)? {
options.compression_level = Some(1); options.compression_level = Some(1);
} }
}, }
_ => { _ => {
if bool::arbitrary(u)? { if bool::arbitrary(u)? {
options.compression_level = Some(u.int_in_range(0..=10)?); options.compression_level = Some(u.int_in_range(0..=10)?);