Skip to content

Commit b7e950a

Browse files
committed
fix: remove threshold for insignificant percentage differences in showPercentageDiff
1 parent 1aec4e9 commit b7e950a

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

  • shake-bench/src/Development/Benchmark

shake-bench/src/Development/Benchmark/Rules.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,6 @@ showItemDiffResult (Time _, Just y) = showPercentageDiff y
423423
showPercentageDiff :: Double -> String
424424
showPercentageDiff ratio
425425
| not (isFinite percent) = "NA"
426-
| abs percent < 0.005 = ""
427426
| otherwise = printf "%.2f" percent <> "%"
428427
where
429428
percent = ratio * 100 - 100

0 commit comments

Comments
 (0)