Skip to content

Commit

Permalink
Fix log output if all tests were run during discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
Vampire committed May 8, 2023
1 parent 4f9beec commit 7d313f7
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 7d313f7

Please sign in to comment.