changeset 1938:91d467b5444b feature/grids/manifolds

Use unit cubes in 3d tests
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 07 Feb 2025 13:45:32 +0100
parents 755fc0907e99
children 5f6e455df31e
files test/Grids/manifolds_test.jl
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/test/Grids/manifolds_test.jl	Fri Feb 07 13:44:12 2025 +0100
+++ b/test/Grids/manifolds_test.jl	Fri Feb 07 13:45:32 2025 +0100
@@ -57,7 +57,7 @@
         ])
 
         # 3D
-        a = CartesianAtlas(fill(Chart(identity, unitsquare()), 2,2,3))
+        a = CartesianAtlas(fill(Chart(identity, unitcube()), 2,2,3))
         @test Set(connections(a)) == Set([
             (MultiBlockBoundary{(1,1,1), east}(),  MultiBlockBoundary{(2,1,1), west}()),
             (MultiBlockBoundary{(1,1,1), north}(), MultiBlockBoundary{(1,2,1), south}()),
@@ -88,7 +88,7 @@
 
     @testset "boundaries" begin
         # 2D
-        a = CartesianAtlas(fill(Chart(identity, unitsquare()), 2,3))
+        a = CartesianAtlas(fill(Chart(identity, unitcube()), 2,3))
         @test Set(boundaries(a)) == Set([
             MultiBlockBoundary{(1,1), south}(),
             MultiBlockBoundary{(2,1), south}(),