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 62e5744 commit f46f25dCopy full SHA for f46f25d
ui-tests/src/test/java/jenkins/plugins/openstack/SeleniumTest.java
@@ -89,7 +89,7 @@ public class SeleniumTest extends AbstractJUnitTest {
89
public static String OS_FIP_POOL_NAME = System.getenv("OS_FIP_POOL_NAME");
90
91
// Set only when the execution environment is known to be reachable from OS so JNLP can connect successfully
92
- public static boolean OS_REACHABLE = Boolean.getBoolean(System.getenv("OS_REACHABLE"));
+ public static boolean OS_REACHABLE = Boolean.parseBoolean(System.getenv("OS_REACHABLE"));
93
94
@BeforeClass
95
public static void statiSetUp() {
0 commit comments