You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2018/01/09 15:23:43 UTC

commons-release-plugin git commit: COMMONSSITE-99: checkstyle error fix in test

Repository: commons-release-plugin
Updated Branches:
  refs/heads/master 7b1b50f4b -> 6488647b2


COMMONSSITE-99: checkstyle error fix in test


Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/6488647b
Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/6488647b
Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/6488647b

Branch: refs/heads/master
Commit: 6488647b2bd88031f5ce5944de68af926f6e0831
Parents: 7b1b50f
Author: Rob Tompkins <ch...@gmail.com>
Authored: Tue Jan 9 10:23:35 2018 -0500
Committer: Rob Tompkins <ch...@gmail.com>
Committed: Tue Jan 9 10:23:35 2018 -0500

----------------------------------------------------------------------
 .../release/plugin/mojos/CommonsDistributionStagingMojoTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/6488647b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java
index 99df08d..50c88ba 100644
--- a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java
+++ b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java
@@ -62,7 +62,7 @@ public class CommonsDistributionStagingMojoTest {
         File releaseNotesBasedir = new File("src/test/resources/mojos/stage-distributions/");
         mojoForTest.setBasedir(releaseNotesBasedir);
         mojoForTest.execute();
-        File targetScmDirectory = new File ("target/commons-release-plugin/scm");
+        File targetScmDirectory = new File("target/commons-release-plugin/scm");
         assertTrue(targetScmDirectory.exists());
     }
 }