Skip to content

Commit d6bcdf2

Browse files
authored
Fix an if-elseif
1 parent 6635f3e commit d6bcdf2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/runtests.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,9 @@ end
250250
if Sys.iswindows()
251251
@info "Skipping the examples/MyLib test on Windows"
252252
@test_skip false
253-
elseif
254-
if Sys.isapply()
255-
@info "Skipping the examples/MyLib test on macOS"
256-
@test_skip false
253+
elseif Sys.isapple()
254+
@info "Skipping the examples/MyLib test on macOS"
255+
@test_skip false
257256
else
258257
rootdir_testdir = @__DIR__
259258
rootdir = dirname(rootdir_testdir)

0 commit comments

Comments
 (0)