Skip to content

Commit

Permalink
Merge pull request #6240 from yersan/WFCORE-7047
Browse files Browse the repository at this point in the history
[WFCORE-7047] Installation manager integration tests are not executed…
  • Loading branch information
yersan authored Nov 18, 2024
2 parents b7f831e + e51fc00 commit d3ac8c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions testsuite/domain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@
<include>org/jboss/as/test/integration/domain/secondaryreconnect/*TestCase.java</include>
<include>org/jboss/as/test/integration/domain/management/*TestCase.java</include>
<include>org/jboss/as/test/integration/domain/elytron/*TestCase.java</include>
<include>org/jboss/as/test/integration/domain/installationmanager/*TestCase.java</include>
</includes>
</configuration>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ public void revertWithNoResolveLocalMavenCache() throws IOException {

Assert.assertTrue(Files.exists(primaryPrepareServerDir) && Files.isDirectory(primaryPrepareServerDir));
Assert.assertTrue(primaryPrepareServerDir + " does not contain the expected file marker",
Files.list(primaryPrepareServerDir).allMatch(p -> primaryPrepareServerDir.relativize(p).toString().startsWith("server-prepare-marker-")));
directoryOnlyContains(primaryPrepareServerDir, p -> primaryPrepareServerDir.relativize(p).toString().startsWith("server-prepare-marker-")));
}

@Test
Expand Down

0 comments on commit d3ac8c2

Please sign in to comment.