Skip to content

Commit

Permalink
Fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jyn514 committed Dec 25, 2022
1 parent a85abc4 commit 2c0db14
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,7 @@ fn count_cleaned(target: &TempDir, args: &[&str], old_size: u64) -> Result<u64>
let one_percent = old_size as f64 * 0.01;
assert!(
diff <= one_percent as u64,
"new_size={}, old_size={}, cleaned={}, diff={diff}, 1%={one_percent}",
new_size,
old_size,
cleaned
"new_size={new_size}, old_size={old_size}, cleaned={cleaned}, diff={diff}, 1%={one_percent}"
);

Ok(cleaned)
Expand Down

0 comments on commit 2c0db14

Please sign in to comment.