changeset 1494:495f7f201d54 feature/grids/curvilinear

Fix some typos in tests
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 01 Dec 2023 12:23:45 +0100
parents 58b8da9c7e56
children 64b58740e029
files test/Grids/curvilinear_grid_test.jl
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/test/Grids/curvilinear_grid_test.jl	Fri Dec 01 12:00:07 2023 +0100
+++ b/test/Grids/curvilinear_grid_test.jl	Fri Dec 01 12:23:45 2023 +0100
@@ -117,10 +117,10 @@
     end
 
     @testset "boundary_grid" begin
-        @test_broken boundary_grid(cg, TensorGridBoundary{1, Lower}()) == 2. * boundary_grid(lg,TensorGridBoundary{1, Lower()})
-        @test_broken boundary_grid(cg, TensorGridBoundary{1, Upper}()) == 2. * boundary_grid(lg,TensorGridBoundary{1, Upper()})
-        @test_broken boundary_grid(cg, TensorGridBoundary{2, Lower}()) == 2. * boundary_grid(lg,TensorGridBoundary{2, Lower()})
-        @test_broken boundary_grid(cg, TensorGridBoundary{2, Upper}()) == 2. * boundary_grid(lg,TensorGridBoundary{2, Upper()})
+        @test boundary_grid(cg, TensorGridBoundary{1, Lower}()) == 2. * boundary_grid(lg,TensorGridBoundary{1, Lower}())
+        @test_broken boundary_grid(cg, TensorGridBoundary{1, Upper}()) == 2. * boundary_grid(lg,TensorGridBoundary{1, Upper}())
+        @test_broken boundary_grid(cg, TensorGridBoundary{2, Lower}()) == 2. * boundary_grid(lg,TensorGridBoundary{2, Lower}())
+        @test_broken boundary_grid(cg, TensorGridBoundary{2, Upper}()) == 2. * boundary_grid(lg,TensorGridBoundary{2, Upper}())
     end
 
     # TBD: Should curvilinear grid support refining and coarsening?