Skip to content

Commit 1ff04d8

Browse files
authored
remove uses of @Module.macro (JuliaLang/julia#48316)
1 parent 41cc4a9 commit 1ff04d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/distributed_exec.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,15 +302,15 @@ end
302302

303303
# Tests for issue #23109 - should not hang.
304304
f = @spawnat :any rand(1, 1)
305-
@Base.Experimental.sync begin
305+
Base.Experimental.@sync begin
306306
for _ in 1:10
307307
@async fetch(f)
308308
end
309309
end
310310

311311
wid1, wid2 = workers()[1:2]
312312
f = @spawnat wid1 rand(1,1)
313-
@Base.Experimental.sync begin
313+
Base.Experimental.@sync begin
314314
@async fetch(f)
315315
@async remotecall_fetch(()->fetch(f), wid2)
316316
end

0 commit comments

Comments
 (0)