style: cargo fmt --all
This commit is contained in:
parent
ad218a6c9c
commit
c0cc03c0e7
1 changed files with 2 additions and 5 deletions
|
@ -287,11 +287,8 @@ impl<'a> arbitrary::Arbitrary<'a> for FileOptions<'a, ExtendedFileOptions> {
|
||||||
};
|
};
|
||||||
#[cfg(feature = "deflate-zopfli")]
|
#[cfg(feature = "deflate-zopfli")]
|
||||||
if options.compression_method == CompressionMethod::Deflated && bool::arbitrary(u)? {
|
if options.compression_method == CompressionMethod::Deflated && bool::arbitrary(u)? {
|
||||||
options.zopfli_buffer_size = Some(1 << u.int_in_range(8..=29)? * if bool::arbitrary(u) {
|
options.zopfli_buffer_size =
|
||||||
2
|
Some(1 << u.int_in_range(8..=29)? * if bool::arbitrary(u) { 2 } else { 3 });
|
||||||
} else {
|
|
||||||
3
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
u.arbitrary_loop(Some(0), Some((u16::MAX / 4) as u32), |u| {
|
u.arbitrary_loop(Some(0), Some((u16::MAX / 4) as u32), |u| {
|
||||||
options
|
options
|
||||||
|
|
Loading…
Add table
Reference in a new issue