Skip to content

Commit 9303ad3

Browse files
committed
Use new broadcast dot syntax when testing rem
1 parent d2a48a3 commit 9303ad3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/darray.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,9 +752,9 @@ t=@testset "test scalar ops" begin
752752
@test @eval ($f)($a, $a) == ($f)($b, $b)
753753
end
754754

755-
@testset "$f" for f in (rem,)
755+
@testset "$f" for f in (:rem,)
756756
x = rand()
757-
@test f(a, x) == f(b, x)
757+
@test @eval ($f).($a, $x) == ($f).($b, $x)
758758
end
759759
close(a)
760760
close(c)

0 commit comments

Comments
 (0)