Skip to content

Commit

Permalink
folder --> tempDirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Sep 25, 2023
1 parent a9965c0 commit dbe9995
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ public class JavadocReportTest extends AbstractMojoTestCase {
protected void setUp() throws Exception {
super.setUp();

Path folder = Files.createTempDirectory("JavadocReportTest");
localRepo = folder.resolve(Paths.get("target/local-repo/")).toFile();
Path tempDirectory = Files.createTempDirectory("JavadocReportTest");
localRepo = tempDirectory.resolve(Paths.get("target/local-repo/")).toFile();
unit = new File(getBasedir(), "src/test/resources/unit").toPath();

createTestRepo();
Expand Down

0 comments on commit dbe9995

Please sign in to comment.