You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2020/01/26 21:45:42 UTC

[maven-integration-testing] branch MNG-5669 updated: [MNG-5669] Ignore 'Picked up JAVA_TOOL_OPTIONS'

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

rfscholte pushed a commit to branch MNG-5669
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git


The following commit(s) were added to refs/heads/MNG-5669 by this push:
     new f01dae1  [MNG-5669] Ignore 'Picked up JAVA_TOOL_OPTIONS'
f01dae1 is described below

commit f01dae1119654185ad601fd37e14340c62e12ee8
Author: rfscholte <rf...@apache.org>
AuthorDate: Sun Jan 26 22:45:21 2020 +0100

    [MNG-5669] Ignore 'Picked up JAVA_TOOL_OPTIONS'
---
 .../src/test/java/org/apache/maven/it/MavenITmng5669ReadPomsOnce.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5669ReadPomsOnce.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5669ReadPomsOnce.java
index e6bab7e..a6ad436 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5669ReadPomsOnce.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5669ReadPomsOnce.java
@@ -65,7 +65,7 @@ public class MavenITmng5669ReadPomsOnce
         verifier.resetStreams();
         
         List<String> logTxt = verifier.loadLines( "log.txt", "utf-8" );
-        if ( logTxt.get( 0 ).startsWith( "Picked up _JAVA_OPTIONS:" ) )
+        if ( logTxt.get( 0 ).startsWith( "Picked up JAVA_TOOL_OPTIONS:" ) )
         {
             logTxt.remove( 0 );
         }