Skip to content

Commit

Permalink
Fix for WFCORE-7098, InstallationManagerBootTestCase shouldn't delete…
Browse files Browse the repository at this point in the history
… module when ts.bootable
  • Loading branch information
jfdenise committed Dec 20, 2024
1 parent a5eaa0f commit 913f86c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ public static void createTestModule() throws IOException {
public static void removeTestModule() {
if (testModule != null) {
controller.stop();
testModule.remove();
// Bootable JAR fully delete the installation
if (!AssumeTestGroupUtil.isBootableJar()) {
testModule.remove();
}
}
}

Expand Down

0 comments on commit 913f86c

Please sign in to comment.