You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ma...@apache.org on 2020/12/06 08:19:42 UTC

[maven-surefire] branch MartinKanters-grammar created (now 1179dc1)

This is an automated email from the ASF dual-hosted git repository.

martinkanters pushed a change to branch MartinKanters-grammar
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git.


      at 1179dc1  Update AbstractSurefireMojo.java

This branch includes the following new commits:

     new 1179dc1  Update AbstractSurefireMojo.java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-surefire] 01/01: Update AbstractSurefireMojo.java

Posted by ma...@apache.org.
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 <ma...@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." );
         }
     }