Skip to content

Commit f9712e9

Browse files
committed
-> in
1 parent 945004f commit f9712e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/utils_test.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,17 @@ recursivefill!(x, true)
103103
# Test VectorOfArray + recursivefill! + static arrays
104104
@testset "VectorOfArray + recursivefill! + static arrays" begin
105105
Vec3 = SVector{3, Float64}
106-
x = [randn(Vec3, n) for n 1:4] # vector of vectors of static arrays
106+
x = [randn(Vec3, n) for n in 1:4] # vector of vectors of static arrays
107107

108108
x_voa = VectorOfArray(x)
109109
@test eltype(x_voa) === Vec3
110110
@test first(x_voa) isa AbstractVector{Vec3}
111111

112112
y_voa = recursivecopy(x_voa)
113113
recursivefill!(y_voa, true)
114-
@test all(y_voa[n] == fill(ones(Vec3), n) for n 1:4)
114+
@test all(y_voa[n] == fill(ones(Vec3), n) for n in 1:4)
115115

116116
y_voa = recursivecopy(x_voa)
117117
recursivefill!(y_voa, ones(Vec3))
118-
@test all(y_voa[n] == fill(ones(Vec3), n) for n 1:4)
118+
@test all(y_voa[n] == fill(ones(Vec3), n) for n in 1:4)
119119
end

0 commit comments

Comments
 (0)