Skip to content

Commit

Permalink
Merge pull request #1198 from Vampire/fix-log-output
Browse files Browse the repository at this point in the history
Fix log output if all tests were run during discovery
  • Loading branch information
hcoles authored May 9, 2023
2 parents 4f9beec + 7d313f7 commit b0a24e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static void main(final String[] args) {
CoverageWorker worker = new CoverageWorker(invokeQueue, toExecute);
worker.run();
} else {
LOG.info(() -> tus.size() + "All tests were executed as part of discovery.");
LOG.info(() -> "All " + tus.size() + " tests were executed as part of discovery.");
}

} catch (final PitHelpError phe) {
Expand Down

0 comments on commit b0a24e7

Please sign in to comment.