Rename class, cleanup
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java b/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java
index aa151a1..bb3120d 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java
@@ -107,7 +107,7 @@
         // -------------------------------------------------------------------------------------------------------------
         // suite.addTestSuite( MavenIT0108SnapshotUpdateTest.class ); -- MNG-3137
 
-        suite.addTestSuite( MavenITmng7024SubfolderExecution.class );
+        suite.addTestSuite( MavenITmng7024SubdirExecution.class );
         suite.addTestSuite( MavenITmng6754TimestampInMultimoduleProject.class );
         suite.addTestSuite( MavenITmng6981ProjectListShouldIncludeChildrenTest.class );
         suite.addTestSuite( MavenITmng6972AllowAccessToGraphPackageTest.class );
diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7024SubfolderExecution.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7024SubdirExecution.java
similarity index 86%
rename from core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7024SubfolderExecution.java
rename to core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7024SubdirExecution.java
index 2032b79..ea58104 100644
--- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7024SubfolderExecution.java
+++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7024SubdirExecution.java
@@ -25,19 +25,16 @@
 import java.io.File;
 
 /**
- * This is a test case for <a href="https://issues.apache.org/jira/browse/MNG-4660">MNG-4660</a>.
- *
- * @author Maarten Mulders
- * @author Martin Kanters
+ * This is a test case for <a href="https://issues.apache.org/jira/browse/MNG-7024">MNG-7024</a>.
  */
-public class MavenITmng7024SubfolderExecution extends AbstractMavenIntegrationTestCase {
-    public MavenITmng7024SubfolderExecution()
+public class MavenITmng7024SubdirExecution extends AbstractMavenIntegrationTestCase {
+    public MavenITmng7024SubdirExecution()
     {
         super( "[4.0.0-alpha-1,)" );
     }
 
     /**
-     * Executing from a subfolder, however this folder is NOT part of the rootreactor, hence should not try to bind
+     * Executing from a subdirectory, however this folder is NOT part of the rootreactor, hence should not try to bind
      */
     public void testShouldIgnoreModuleA() throws Exception
     {