File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 )
119119end
You can’t perform that action at this time.
0 commit comments