This is an automated email from the ASF dual-hosted git repository. rfscholte pushed a commit to branch MNG-4660 in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
commit c5032bda4af9332d5b9997a21d2a3d4801cf2c6d Author: Martin Kanters <[email protected]> AuthorDate: Sat Feb 22 10:07:18 2020 -0500 Reverted the change in the other integration test --- .../src/test/java/org/apache/maven/it/MavenITmng6090CIFriendlyTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6090CIFriendlyTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6090CIFriendlyTest.java index d561ef5..c1abf34 100644 --- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6090CIFriendlyTest.java +++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6090CIFriendlyTest.java @@ -60,7 +60,7 @@ public class MavenITmng6090CIFriendlyTest verifier.addCliOption( "-Drevision=1.2" ); verifier.setLogFileName( "install-log.txt" ); - verifier.executeGoal( "verify" ); + verifier.executeGoals( Arrays.asList( "clean", "install" ) ); verifier.verifyErrorFreeLog(); verifier.resetStreams();
