Skip to content

Commit

Permalink
Merge pull request #1918 from rufinio/coveragesensortypo
Browse files Browse the repository at this point in the history
CxxCoverageSensor: fix typo in debug message
  • Loading branch information
guwirth authored Aug 14, 2020
2 parents 88a83f2 + 2868851 commit bf272d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private static void parseCoverageReport(CoverageParser parser, File report,
try {
parser.parse(report, measuresForReport);
} catch (XMLStreamException e) {
throw new EmptyReportException("Coverage report" + report + "cannot be parsed by" + parser, e);
throw new EmptyReportException("Coverage report " + report + " cannot be parsed by " + parser, e);
}

if (measuresForReport.isEmpty()) {
Expand Down

0 comments on commit bf272d9

Please sign in to comment.