Skip to content

Commit 6248e85

Browse files
authored
improve baseline warning message (#2650)
1 parent 1f7cab1 commit 6248e85

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/BenchmarkDotNet/Analysers/BaselineCustomAnalyzer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ protected override IEnumerable<Conclusion> AnalyseSummary(Summary summary)
3131
continue;
3232

3333
var message = "A question mark '?' symbol indicates that it was not possible to compute the " +
34-
$"({columnNames}) column(s) because the baseline value is too close to zero.";
34+
$"({columnNames}) column(s) because the baseline or benchmark could not be found, or " +
35+
$"the baseline value is too close to zero.";
3536

3637
yield return Conclusion.CreateWarning(Id, message);
3738
}

0 commit comments

Comments
 (0)