Skip to content

Commit a51fef0

Browse files
committed
fixed typo
1 parent 5a190d1 commit a51fef0

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -648,9 +648,7 @@ public void testAddRemoveDomainUpdateOperatorHC() throws Exception {
648648
} catch (Exception ex) {
649649
if (!ex.getMessage()
650650
.contains(
651-
" Response {\"status\":404,\"detail\":\"/operator/latest/domains/test"
652-
+ number
653-
+ "\""))
651+
" Response {\"status\":404,\"detail\":\"/operator/latest/domains/test" + number))
654652
throw new RuntimeException(
655653
"FAILURE: Exception does not report the expected error message " + ex.getMessage());
656654
logger.info("Deleting operator to check that domain functionality is not effected");

integration-tests/src/test/java/oracle/kubernetes/operator/utils/Domain.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ public void verifyHasClusterServiceChannelPort(String protocol, int port, String
362362
public void deployWebAppViaREST(
363363
String webappName, String webappLocation, String username, String password) throws Exception {
364364
StringBuffer cmd = new StringBuffer();
365-
cmd.append("curl --silent --user ")
365+
cmd.append("curl --noproxy '*' --silent --user ")
366366
.append(username)
367367
.append(":")
368368
.append(password)
@@ -479,7 +479,7 @@ public void callWebAppAndVerifyLoadBalancing(String webappName, boolean verifyLo
479479
}
480480
testAppUrl.append(webappName).append("/");
481481
// curl cmd to call webapp
482-
StringBuffer curlCmd = new StringBuffer("curl --noproxy '*' --silent ");
482+
StringBuffer curlCmd = new StringBuffer("curl --silent ");
483483
curlCmd
484484
.append(" -H 'host: ")
485485
.append(domainUid)

0 commit comments

Comments
 (0)