Skip to content

Commit e76c90f

Browse files
authored
Merge pull request #1975 from nmosier/master
collector bench_cmp: multiply normalized change by 100
2 parents 89bc060 + 5356af4 commit e76c90f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/src/compare.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ pub async fn compare_artifacts(
165165
if a == 0.0 {
166166
None
167167
} else {
168-
Some((b - a) / a)
168+
Some((b - a) / a * 100.0)
169169
}
170170
}
171171
(_, _) => None,

0 commit comments

Comments
 (0)