We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 259fa5d commit 0a10e2bCopy full SHA for 0a10e2b
integration-tests/src/test/java/oracle/weblogic/kubernetes/ItMiiDynamicUpdatePart3.java
@@ -260,7 +260,10 @@ void checkOperatorLogIntrospectorMsg() {
260
if (!WEBLOGIC_SLIM) {
261
assertTrue(operatorPodLog.contains("Version check passed"));
262
}
263
- assertTrue(operatorPodLog.contains("Job " + domainUid + "-introspector has failed"));
+ String expectedMsg = "The domain " + domainUid + " introspect job failed";
264
+
265
+ assertTrue(operatorPodLog.contains(expectedMsg), "Can't find expected msg "
266
+ + expectedMsg + " in the operator log");
267
assertTrue(operatorPodLog.contains(MII_DYNAMIC_UPDATE_EXPECTED_ERROR_MSG));
268
269
0 commit comments