Skip to content

Commit

Permalink
Rollup merge of #134556 - the8472:restore-ns-units, r=jieyouxu
Browse files Browse the repository at this point in the history
[tiny] fix missing ns units in bootstrap's benchmark rendering
  • Loading branch information
matthiaskrgr authored Dec 20, 2024
2 parents fcc1615 + 1abe485 commit 94b1b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/src/utils/render_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ impl<'a> Renderer<'a> {
for bench in &self.benches {
rows.push((
&bench.name,
format!("{:.2?}/iter", bench.median),
format!("{:.2?}ns/iter", bench.median),
format!("+/- {:.2?}", bench.deviation),
));
}
Expand Down

0 comments on commit 94b1b48

Please sign in to comment.