@@ -56,9 +56,6 @@ public class ITOperator extends BaseTest {
5656
5757 private static Operator operator1 , operator2 ;
5858
59- private static Operator operatorForDel1 ;
60- private static Operator operatorForDel2 ;
61-
6259 private static Operator operatorForBackwardCompatibility ;
6360
6461 private static boolean QUICKTEST ;
@@ -199,7 +196,7 @@ public void testDomainOnPVUsingWDT() throws Exception {
199196 } finally {
200197 if (domain != null && (JENKINS || testCompletedSuccessfully )) {
201198 // domain.destroy();
202- TestUtils .verifyBeforeDeletion (domain );
199+ // TestUtils.verifyBeforeDeletion(domain);
203200 logger .info ("About to delete domain: " + domain .getDomainUid ());
204201 TestUtils .deleteWeblogicDomainResources (domain .getDomainUid ());
205202 TestUtils .verifyAfterDeletion (domain );
@@ -235,7 +232,10 @@ public void testTwoDomainsManagedByTwoOperators() throws Exception {
235232 Domain domain1 = null , domain2 = null ;
236233 boolean testCompletedSuccessfully = false ;
237234 try {
238- domain1 = TestUtils .createDomain (domainOnPVUsingWLSTYamlFile );
235+ // load input yaml to map and add configOverrides
236+ Map <String , Object > wlstDomainMap = TestUtils .loadYaml (domainOnPVUsingWLSTYamlFile );
237+ wlstDomainMap .put ("domainUID" , "domain1onpvwlst" );
238+ domain1 = TestUtils .createDomain (wlstDomainMap );
239239 domain1 .verifyDomainCreated ();
240240 testBasicUseCases (domain1 );
241241 logger .info ("Checking if operator2 is running, if not creating" );
@@ -246,6 +246,7 @@ public void testTwoDomainsManagedByTwoOperators() throws Exception {
246246 // ToDo: configured cluster support is removed from samples, modify the test to create
247247 // configured cluster
248248 Map <String , Object > wdtDomainMap = TestUtils .loadYaml (domainOnPVUsingWDTYamlFile );
249+ wdtDomainMap .put ("domainUID" , "domain2onpvwdt" );
249250 // wdtDomainMap.put("clusterType", "Configured");
250251 domain2 = TestUtils .createDomain (wdtDomainMap );
251252 domain2 .verifyDomainCreated ();
@@ -418,6 +419,7 @@ public void testAutoAndCustomSitConfigOverrides() throws Exception {
418419 // load input yaml to map and add configOverrides
419420 Map <String , Object > domainMap = TestUtils .loadYaml (domainOnPVUsingWLSTYamlFile );
420421 domainMap .put ("configOverrides" , "sitconfigcm" );
422+ domainMap .put ("domainUID" , "customsitdomain" );
421423
422424 // use NFS for this domain on Jenkins, defaultis HOST_PATH
423425 if (System .getenv ("JENKINS" ) != null && System .getenv ("JENKINS" ).equalsIgnoreCase ("true" )) {
0 commit comments