Skip to content

Commit

Permalink
Merge pull request #131 from JuliaLang/yyc/fix-remote
Browse files Browse the repository at this point in the history
Fix usage of RemoteRef
  • Loading branch information
yuyichao committed Dec 29, 2015
2 parents eb65870 + 4af5756 commit 01ab147
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ validate_unicode(unicode) = begin
end
# -------

finished_async_tests = RemoteRef()
if VERSION >= v"0.5.0-dev+1343"
finished_async_tests = RemoteChannel()
else
finished_async_tests = RemoteRef()
end

@async begin
s = listen(7777)
Expand Down

0 comments on commit 01ab147

Please sign in to comment.