changeset 1831:27e74f524c4f refactor/grids/iterable_boundary_indices

Some cleanup in tensor_grid_test.jl
author Jonatan Werpers <jonatan@werpers.com>
date Sun, 20 Oct 2024 21:50:18 +0200
parents 805b9b7fcc39
children 85f8855473ab
files test/Grids/tensor_grid_test.jl
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/test/Grids/tensor_grid_test.jl	Sun Oct 20 21:44:21 2024 +0200
+++ b/test/Grids/tensor_grid_test.jl	Sun Oct 20 21:50:18 2024 +0200
@@ -190,7 +190,6 @@
         @test gf[boundary_indices(TensorGrid(g₁, g₂), TensorGridBoundary{2, UpperBoundary}())] == gf[:,6]
 
         gf = rand(11)
-        @show boundary_indices(TensorGrid(g₁, g₄), TensorGridBoundary{1, LowerBoundary}())
         @test gf[boundary_indices(TensorGrid(g₁, g₄), TensorGridBoundary{1, LowerBoundary}())] == gf[1]
         @test gf[boundary_indices(TensorGrid(g₁, g₄), TensorGridBoundary{1, UpperBoundary}())] == gf[11]
         @test gf[boundary_indices(TensorGrid(g₄,g₁), TensorGridBoundary{2, LowerBoundary}())]== gf[1]
@@ -204,7 +203,6 @@
         @test collect(boundary_indices(TensorGrid(g₁, g₄), TensorGridBoundary{1, UpperBoundary}())) == fill(11)
         @test collect(boundary_indices(TensorGrid(g₄,g₁), TensorGridBoundary{2, LowerBoundary}())) == fill(1)
         @test collect(boundary_indices(TensorGrid(g₄,g₁), TensorGridBoundary{2, UpperBoundary}())) == fill(11)
-        # TBD: What do we actually expect for 1D grids?
     end
 end