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 6eca36baaaf23d4e28f89d97f02529cfec235019 Author: Maarten Mulders <[email protected]> AuthorDate: Fri Mar 27 11:04:31 2020 +0100 Rename method so it better describes the test Also update the Javadoc a bit to better explain what the scenario is in this case. --- .../test/java/org/apache/maven/it/MavenITmng4660ResumeFromTest.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4660ResumeFromTest.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4660ResumeFromTest.java index 6d2b471..b223812 100644 --- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4660ResumeFromTest.java +++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4660ResumeFromTest.java @@ -38,9 +38,10 @@ public class MavenITmng4660ResumeFromTest extends AbstractMavenIntegrationTestCa /** * Test that the --resume-from flag resolves dependencies inside the same Maven project * without having them installed first. - * This test case uses the target/classes folder of module-a. + * This test case uses the target/classes folder of module-a, for the situation where + * module-a has not been packaged. */ - public void testShouldResolveUnpackagedArtifactFromEarlierBuild() throws Exception + public void testShouldResolveOutputDirectoryFromEarlierBuild() throws Exception { final File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4660-resume-from" );
