You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2016/10/19 12:21:20 UTC

maven-integration-testing git commit: print one space after padding

Repository: maven-integration-testing
Updated Branches:
  refs/heads/master 3ffb28978 -> ec5968b3f


print one space after padding

Project: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/commit/ec5968b3
Tree: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/ec5968b3
Diff: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/ec5968b3

Branch: refs/heads/master
Commit: ec5968b3fbe6a3d6c0c1d2b011116b2341294694
Parents: 3ffb289
Author: Herv� Boutemy <hb...@apache.org>
Authored: Wed Oct 19 14:21:11 2016 +0200
Committer: Herv� Boutemy <hb...@apache.org>
Committed: Wed Oct 19 14:21:11 2016 +0200

----------------------------------------------------------------------
 .../java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java  | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/ec5968b3/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
----------------------------------------------------------------------
diff --git a/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java b/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
index 3a9690f..6628a66 100644
--- a/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
+++ b/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
@@ -203,6 +203,7 @@ public abstract class AbstractMavenIntegrationTestCase
         String line = getTestName();
         out.print( line );
         out.print( pad( RESULT_COLUMN - line.length() ) );
+        out.print( ' ' );
 
         if ( skip )
         {