Skip to content

Commit

Permalink
fix jakartaDataTest
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAure committed Jul 18, 2024
1 parent 2761d96 commit fd681d2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import java.sql.Statement;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;

import org.junit.AfterClass;
import org.junit.BeforeClass;
Expand Down Expand Up @@ -88,6 +89,9 @@ public static void beforeClassSetup() throws Exception {

ShrinkHelper.defaultApp(server, DATA_APP, "io.openliberty.checkpoint.data.app", "io.openliberty.checkpoint.data.entity", "io.openliberty.checkpoint.data.repo");

for (Entry<String, String> e : envVars.entrySet())
server.addEnvVar(e.getKey(), e.getValue());

server.setCheckpoint(CheckpointPhase.AFTER_APP_START, false, null);
server.startServer();
server.addEnvVarsForCheckpoint(envVars);
Expand Down

0 comments on commit fd681d2

Please sign in to comment.