Skip to content

Commit

Permalink
Fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
survived committed May 16, 2024
1 parent a44590b commit b2372ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/bin/analyze.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fn draw_multiscalar_perf() -> Result<()> {
assert!(results.iter().all(|res| res.mean.unit == "ns"));
results.iter_mut().for_each(|res| {
res.mean.estimate /= 1000000.;
res.mean.unit = "ms".to_owned();
"ms".clone_into(&mut res.mean.unit);
});
}

Expand Down

0 comments on commit b2372ff

Please sign in to comment.