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 3e84c17 commit 85237a2Copy full SHA for 85237a2
integration-tests/src/test/java/oracle/kubernetes/operator/ITOperator.java
@@ -69,10 +69,10 @@ public class ITOperator extends BaseTest {
69
if (System.getenv("JENKINS") != null) {
70
JENKINS = new Boolean(System.getenv("JENKINS")).booleanValue();
71
}
72
- INGRESSPERDOMAIN =
73
- System.getenv("INGRESSPERDOMAIN") != null
74
- && System.getenv("INGRESSPERDOMAIN").equalsIgnoreCase("false");
75
- }
+ if (System.getenv("INGRESSPERDOMAIN") != null) {
+ INGRESSPERDOMAIN = new Boolean(System.getenv("INGRESSPERDOMAIN")).booleanValue();
+ }
76
77
/**
78
* This method gets called only once before any of the test methods are executed. It does the
0 commit comments