Skip to content

Commit f46f25d

Browse files
committed
Fix OS_REACHABLE some more
1 parent 62e5744 commit f46f25d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui-tests/src/test/java/jenkins/plugins/openstack/SeleniumTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public class SeleniumTest extends AbstractJUnitTest {
8989
public static String OS_FIP_POOL_NAME = System.getenv("OS_FIP_POOL_NAME");
9090

9191
// 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"));
92+
public static boolean OS_REACHABLE = Boolean.parseBoolean(System.getenv("OS_REACHABLE"));
9393

9494
@BeforeClass
9595
public static void statiSetUp() {

0 commit comments

Comments
 (0)