From 70a0c5c4ff8717388f32582509a17afaa3973c25 Mon Sep 17 00:00:00 2001 From: Peter Hedenskog Date: Tue, 17 Dec 2024 05:55:38 +0100 Subject: [PATCH] Make it easier to see which test type that is used (#4339) --- lib/plugins/compare/pug/index.pug | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/plugins/compare/pug/index.pug b/lib/plugins/compare/pug/index.pug index 650c3efcf3..10ed021259 100644 --- a/lib/plugins/compare/pug/index.pug +++ b/lib/plugins/compare/pug/index.pug @@ -21,7 +21,11 @@ p h2 Settings p - | The test conducted in this comparison is the #{compare.meta.testOptions.testType} test. The alternative hypothesis used for this test is "#{compare.meta.testOptions.alternative}". + | The test conducted in this comparison is the + b #{compare.meta.testOptions.testType} + | test. The alternative hypothesis used for this test is + b "#{compare.meta.testOptions.alternative}" + | . if compare.meta.testOptions.alternative === 'less' | This means that we test if the current test is significant less that the baseline tests. else if compare.meta.testOptions.alternative === 'greater'