Skip to content

Commit 85237a2

Browse files
update java-integ-ingress-per-domain
1 parent 3e84c17 commit 85237a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ public class ITOperator extends BaseTest {
6969
if (System.getenv("JENKINS") != null) {
7070
JENKINS = new Boolean(System.getenv("JENKINS")).booleanValue();
7171
}
72-
INGRESSPERDOMAIN =
73-
System.getenv("INGRESSPERDOMAIN") != null
74-
&& System.getenv("INGRESSPERDOMAIN").equalsIgnoreCase("false");
75-
}
72+
if (System.getenv("INGRESSPERDOMAIN") != null) {
73+
INGRESSPERDOMAIN = new Boolean(System.getenv("INGRESSPERDOMAIN")).booleanValue();
74+
}
75+
}
7676

7777
/**
7878
* This method gets called only once before any of the test methods are executed. It does the

0 commit comments

Comments
 (0)