@@ -200,11 +200,12 @@ public void testDomainOnPVUsingWDT() throws Exception {
200200 }
201201
202202 /**
203- * Create two operators if they are not running. Create domain domain4 with dynamic cluster in
204- * default namespace, managed by operator1. Create domain domain5 with Configured cluster using
205- * WDT in test2 namespace, managed by operator2 Verify scaling for domain5 cluster from 2 to 3
206- * servers and back to 2, plus verify no impact on domain4 Cycle domain4 down and back up, plus
207- * verify no impact on domain5 shutdown by deleting both domain4 and domain5 CRD's
203+ * Create two operators if they are not running. Create domain domain1 with dynamic cluster in
204+ * default namespace, managed by operator1. Create domain domain2 with Configured cluster using
205+ * WDT in test2 namespace, managed by operator2. Verify scaling for domain2 cluster from 2 to 3
206+ * servers and back to 2, plus verify no impact on domain1. Cycle domain1 down and back up, plus
207+ * verify no impact on domain2. shutdown by the domains using the delete resource script from
208+ * samples.
208209 *
209210 * <p>ToDo: configured cluster support is removed from samples, modify the test to create
210211 *
@@ -215,7 +216,7 @@ public void testTwoDomainsManagedByTwoOperators() throws Exception {
215216 Assume .assumeFalse (QUICKTEST );
216217 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
217218 logTestBegin (testMethodName );
218- logger .info ("Creating Domain domain4 & verifing the domain creation" );
219+ logger .info ("Creating Domain domain1 & verifing the domain creation" );
219220
220221 logger .info ("Checking if operator1 and domain1 are running, if not creating" );
221222 if (operator1 == null ) {
@@ -237,7 +238,7 @@ public void testTwoDomainsManagedByTwoOperators() throws Exception {
237238 if (operator2 == null ) {
238239 operator2 = TestUtils .createOperator (operator2File );
239240 }
240- // create domain5 with configured cluster
241+ // create domain2 with configured cluster
241242 // ToDo: configured cluster support is removed from samples, modify the test to create
242243 // configured cluster
243244 Map <String , Object > wdtDomainMap = TestUtils .loadYaml (domainonpvwdtFile );
@@ -256,7 +257,7 @@ public void testTwoDomainsManagedByTwoOperators() throws Exception {
256257 logger .info ("Verify the only remaining running domain domain1 is unaffected" );
257258 domain1 .verifyDomainCreated ();
258259
259- logger .info ("Destroy and create domain4 and verify no impact on domain2" );
260+ logger .info ("Destroy and create domain1 and verify no impact on domain2" );
260261 domain1 .destroy ();
261262 domain1 .create ();
262263
@@ -299,7 +300,7 @@ public void testCreateDomainWithStartPolicyAdminOnly() throws Exception {
299300 operator1 = TestUtils .createOperator (operator1File );
300301 }
301302 logger .info ("Creating Domain domain6 & verifing the domain creation" );
302- // create domain6
303+ // create domain
303304 Domain domain = null ;
304305 boolean testCompletedSuccessfully = false ;
305306 try {
@@ -332,8 +333,8 @@ public void testCreateDomainPVReclaimPolicyRecycle() throws Exception {
332333 if (operator1 == null ) {
333334 operator1 = TestUtils .createOperator (operator1File );
334335 }
335- logger .info ("Creating Domain domain7 & verifing the domain creation" );
336- // create domain7
336+ logger .info ("Creating Domain domain & verifing the domain creation" );
337+ // create domain
337338 Domain domain = null ;
338339
339340 try {
0 commit comments