Skip to content

Commit

Permalink
Merge pull request #1111 from wangbo15/master
Browse files Browse the repository at this point in the history
Fix log output
  • Loading branch information
hcoles committed Nov 13, 2022
2 parents 572fe14 + 0648d67 commit 38108c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public static void main(final String[] args) {
List<TestUnit> toExecute = removeTestsExecutedDuringDiscovery(tus);

if (!toExecute.isEmpty()) {
LOG.info(() -> tus.size() + "Executing " + toExecute.size() + " tests not run during discovery.");
LOG.info(() -> "Executing " + toExecute.size() + " tests not run during discovery.");
CoverageWorker worker = new CoverageWorker(invokeQueue, toExecute);
worker.run();
} else {
Expand Down

0 comments on commit 38108c8

Please sign in to comment.