Skip to content

Commit 0b62497

Browse files
committed
Change the threshold for what constitutes a very large change from 18 times the significance threshold to 12 times
1 parent ff5938c commit 0b62497

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/comparison.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ impl TestResultComparison {
874874
Magnitude::Small
875875
} else if change < threshold * 6.0 {
876876
Magnitude::Medium
877-
} else if change < threshold * 18.0 {
877+
} else if change < threshold * 12.0 {
878878
Magnitude::Large
879879
} else {
880880
Magnitude::VeryLarge

0 commit comments

Comments
 (0)