Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
link2xt committed Oct 8, 2024
1 parent 1325bb3 commit 8e72245
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/decompress_chunk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ fn deflate_decoder_partial() {
loop {
let prev_out = decompress.total_out();
let status = decompress
.decompress(&input[decompress.total_in() as usize..], &mut output_buf, flush_decompress)
.decompress(
&input[decompress.total_in() as usize..],
&mut output_buf,
flush_decompress,
)
.unwrap();
let output_len = decompress.total_out() - prev_out;
output.extend_from_slice(&output_buf[..output_len as usize]);
Expand Down

0 comments on commit 8e72245

Please sign in to comment.