Skip to content

Commit

Permalink
Fix apidocsDir
Browse files Browse the repository at this point in the history
  • Loading branch information
romain-grecourt committed Nov 20, 2023
1 parent d9ce284 commit 46c7b76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ final class ProjectsTestIT {
@ParameterizedTest
@ConfigurationParameterSource("basedir")
void test1(String basedir) {
Path apidocsDir = Path.of(basedir).resolve("target/apidocs");
Path apidocsDir = Path.of(basedir).resolve("module3/target/apidocs");
assertThat(apidocsDir.resolve("com/acme1/Acme1.html"), fileExists());
assertThat(apidocsDir.resolve("com/acme2a/Acme2a.html"), fileExists());
assertThat(apidocsDir.resolve("com/acme2b/Acme2b.html"), fileExists());
Expand Down

0 comments on commit 46c7b76

Please sign in to comment.