Skip to content

Commit 972df18

Browse files
authored
Merge pull request #1036 from rylev/large-magnitude-threshold
Change the threshold for what constitutes a very large change from 18x the sig threshold to 12x
2 parents ff5938c + 0b62497 commit 972df18

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)