Skip to content

Commit 41cc4a9

Browse files
authored
Use get_bool_env in more places (JuliaLang/julia#48202)
1 parent f77b8a6 commit 41cc4a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/distributed_exec.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ clear!(wp)
681681
# - ssh addprocs requires sshd to be running locally with passwordless login enabled.
682682
# The test block is enabled by defining env JULIA_TESTFULL=1
683683

684-
DoFullTest = Bool(parse(Int,(get(ENV, "JULIA_TESTFULL", "0"))))
684+
DoFullTest = Base.get_bool_env("JULIA_TESTFULL", false)
685685

686686
if DoFullTest
687687
println("Testing exception printing on remote worker from a `remote_do` call")

0 commit comments

Comments
 (0)