Skip to content

Commit

Permalink
Adapt to improved mavenProject caching
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Jul 9, 2022
1 parent 700bf6f commit 685e37e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public void testClasspathOrderWorkspace001() throws Exception {
Set<Artifact> artifacts = getMavenProjectArtifacts(project1);
assertEquals(4, artifacts.size());
Artifact a1 = artifacts.iterator().next();
assertEquals(project2.getFolder("target/classes").getLocation().toFile(), a1.getFile());
assertEquals(project2.getFile("pom.xml").getLocation().toFile(), a1.getFile());
}

@Test
Expand Down

0 comments on commit 685e37e

Please sign in to comment.