Mercurial > repos > public > sbplib_julia
changeset 1411:faffc5957bf2 bugfix/grids/complete_interface_impl
REVIEW: Suggest support for colon indexing
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Tue, 22 Aug 2023 22:22:20 +0200 |
parents | c7c5bc2a1ce2 |
children | e56277744ebb |
files | test/Grids/tensor_grid_test.jl |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/test/Grids/tensor_grid_test.jl Tue Aug 22 22:21:48 2023 +0200 +++ b/test/Grids/tensor_grid_test.jl Tue Aug 22 22:22:20 2023 +0200 @@ -43,6 +43,9 @@ @test axes(g, 1) == 1:11 @test axes(g, 2) == 1:6 @test axes(g) == (1:11,1:6) + + # REVIEW: Would be nice if this worked. + @test_broken g[:, end] == g[1:11,6] end @testset "cartesian indexing" begin