From c668130e689afe6fcec0fc2626175b3722fdc09b Mon Sep 17 00:00:00 2001 From: Lorenzo Van Munoz <66997677+lxvm@users.noreply.github.com> Date: Mon, 19 Feb 2024 13:12:09 -0500 Subject: [PATCH] Update basic_indexing.jl add test --- test/basic_indexing.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/basic_indexing.jl b/test/basic_indexing.jl index b3767c30..170c5e96 100644 --- a/test/basic_indexing.jl +++ b/test/basic_indexing.jl @@ -232,3 +232,6 @@ mulX .= sqrt.(abs.(testva .* testvb)) a = ArrayPartition(1:5, 1:6) a[1:8] a[[1, 3, 8]] + +# issue 354 +@test VectorOfArray(ones(1))[:] == ones(1)