Skip to content

Commit 2d3ccf7

Browse files
committed
corrected appname
1 parent c25654b commit 2d3ccf7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/ITPodsShutdown.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import oracle.kubernetes.operator.utils.ExecResult;
1919
import oracle.kubernetes.operator.utils.Operator;
2020
import oracle.kubernetes.operator.utils.TestUtils;
21+
import org.junit.AfterClass;
2122
import org.junit.Assert;
2223
import org.junit.Assume;
2324
import org.junit.BeforeClass;
@@ -90,7 +91,7 @@ public static void staticPrepare() throws Exception {
9091
*
9192
* @throws Exception
9293
*/
93-
// @AfterClass
94+
@AfterClass
9495
public static void staticUnPrepare() throws Exception {
9596
if (!QUICKTEST) {
9697
logger.info("+++++++++++++++++++++++++++++++++---------------------------------+");
@@ -520,7 +521,7 @@ public static void callWebApp(String testAppPath, Domain domain, boolean deployA
520521
if (deployApp) {
521522
domain.buildDeployJavaAppInPod(
522523
testAppName, scriptName, BaseTest.getUsername(), BaseTest.getPassword());
523-
domain.callWebAppAndVerifyLoadBalancing(testAppName, false);
524+
domain.callWebAppAndVerifyLoadBalancing(testAppName + "/CounterServlet", false);
524525
}
525526
String nodePortHost = domain.getHostNameForCurl();
526527
int nodePort = domain.getLoadBalancerWebPort();

0 commit comments

Comments
 (0)