Skip to content

Commit 1d67f0d

Browse files
committed
fix r undefined
1 parent 5f62713 commit 1d67f0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/simplemisc.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ end
88

99
@testset "Simple Miscellaneous" begin
1010
r1 = rand(UInt, 239);
11-
mask = ~(one(eltype(r))<<(2))
11+
mask = ~(one(eltype(r1))<<(2))
1212
r2 = r1 .& mask;
1313
@test lv_turbo(r1, mask) == r2;
1414
end

0 commit comments

Comments
 (0)