diff test/Grids/grid_test.jl @ 1332:ad31c1022e42 refactor/grids

Rename function for coordinate size of a grid
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 03 May 2023 15:31:53 +0200
parents 0713175a5743
children 79a2193da5c1
line wrap: on
line diff
--- a/test/Grids/grid_test.jl	Wed May 03 15:29:44 2023 +0200
+++ b/test/Grids/grid_test.jl	Wed May 03 15:31:53 2023 +0200
@@ -11,8 +11,8 @@
 
     @test ndims(DummyGrid{Int, 2}()) == 2
 
-    @test target_manifold_dim(DummyGrid{Int, 1}()) == 1
-    @test target_manifold_dim(DummyGrid{SVector{3,Float64}, 2}()) == 3
+    @test coordinate_size(DummyGrid{Int, 1}()) == 1
+    @test coordinate_size(DummyGrid{SVector{3,Float64}, 2}()) == 3
 
     @testset "component_type" begin
         @test component_type(DummyGrid{Int,1}()) == Int