Skip to content

Commit 83f1e75

Browse files
committed
test fix 2
1 parent 39e71e2 commit 83f1e75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ifelsemasks.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,8 +495,8 @@ T = Float32
495495
if T <: Integer
496496
a = rand(-T(100):T(100), N); b = rand(-T(100):T(100), N);
497497
mv, mi = findminturbo(a)
498-
@test (mv,mi) == findminturbo_u2(a)
499-
@test a[mi] == minimum(a)
498+
mv2, mi2 = findminturbo_u2(a)
499+
@test mv == a[mi] == minimum(a) == mv2 == a[mi2]
500500
else
501501
a = rand(T, N); b = rand(T, N);
502502
@test findmin(a) == findminturbo(a) == findminturbo_u2(a)

0 commit comments

Comments
 (0)