This is an automated email from the ASF dual-hosted git repository. martinkanters pushed a commit to branch MartinKanters-grammar in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
commit 1179dc1b11b56ee76a3724cc704d48038735b56e Author: Martin Kanters <martinkant...@apache.org> AuthorDate: Sun Dec 6 09:19:32 2020 +0100 Update AbstractSurefireMojo.java (doc) Grammar fixes for the sentence where it hints you to fork JVMs. --- .../java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java index 06556e1..ecceea6 100644 --- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java +++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java @@ -1142,8 +1142,8 @@ public abstract class AbstractSurefireMojo { if ( "0".equals( getForkCount() ) ) { - getConsoleLogger().warning( "The parameter forkCount should likely not be 0, not forking a JVM for tests " - + "reduce test accuracy, ensure to have a <forkCount> >= 1." ); + getConsoleLogger().warning( "The parameter forkCount should likely not be 0. Forking a JVM for tests " + + "improves test accuracy. Ensure to have a <forkCount> >= 1." ); } }