diff test/Grids/mapped_grid_test.jl @ 1581:f77c5309dd2b feature/grids/manifolds

Rename ConcreteChart to Chart and remove the abstarct chart type
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 25 Apr 2024 22:32:54 +0200
parents d5aa72662161
children d4a6f9effcdd
line wrap: on
line diff
--- a/test/Grids/mapped_grid_test.jl	Thu Apr 25 22:15:12 2024 +0200
+++ b/test/Grids/mapped_grid_test.jl	Thu Apr 25 22:32:54 2024 +0200
@@ -186,7 +186,7 @@
 
 
     @testset "mapped_grid(::Chart)" begin
-        c = ConcreteChart(unitsquare()) do (ξ,η)
+        c = Chart(unitsquare()) do (ξ,η)
             @SVector[2ξ, 3η]
         end
         Grids.jacobian(c::typeof(c), ξ̄) = @SMatrix[2 0; 0 3]