[MNG-7127] fix MavenCliTest.testStyleColors test in JDK 16

The MavenCliTest.testStyleColors is not failing when the build
is under JDK 8 or JDK 11.

After changing to JDK 16, the test fails, this commit is to fix
the NullPointerException.

Tested on JDK 8, 11 adn 16 with:

`mvn clean verify`
This commit is contained in:
Carlos Chacin 2021-03-22 21:28:48 -07:00 committed by Martin Kanters
parent c4cd93d55f
commit 276c6a8dc4
1 changed files with 3 additions and 0 deletions

View File

@ -322,6 +322,7 @@ public class MavenCliTest
MessageUtils.setColorEnabled( true );
request = new CliRequest( new String[] { "-l", "target/temp/mvn.log" }, null );
request.workingDirectory = "target/temp";
cli.cli( request );
cli.properties( request );
cli.logging( request );
@ -343,6 +344,7 @@ public class MavenCliTest
MessageUtils.setColorEnabled( false );
request = new CliRequest( new String[] { "-Dstyle.color=always", "-B", "-l", "target/temp/mvn.log" }, null );
request.workingDirectory = "target/temp";
cli.cli( request );
cli.properties( request );
cli.logging( request );
@ -350,6 +352,7 @@ public class MavenCliTest
MessageUtils.setColorEnabled( false );
CliRequest maybeColorRequest = new CliRequest( new String[] { "-Dstyle.color=maybe", "-B", "-l", "target/temp/mvn.log" }, null );
request.workingDirectory = "target/temp";
cli.cli( maybeColorRequest );
cli.properties( maybeColorRequest );
assertThrows(