Mercurial > repos > public > sbplib_julia
diff test/Grids/manifolds_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 | fdee60ab8c4e |
children | d9d767980d6f |
line wrap: on
line diff
--- a/test/Grids/manifolds_test.jl Thu Apr 25 22:15:12 2024 +0200 +++ b/test/Grids/manifolds_test.jl Thu Apr 25 22:32:54 2024 +0200 @@ -50,10 +50,7 @@ end @testset "Chart" begin -end - -@testset "ConcreteChart" begin - c = ConcreteChart(x->2x, unitsquare()) + c = Chart(x->2x, unitsquare()) @test c isa Chart{2} @test c([3,2]) == [6,4] @test parameterspace(c) == unitsquare()