Mercurial > repos > public > sbplib_julia
diff test/SbpOperators/boundary_conditions/boundary_condition_test.jl @ 1672:3714a391545a refactor/grids/boundary_identifiers_1d
Make the boundary identifiers for EquidistantGrid subtype BoundaryIdentifer
author | Vidar Stiernström <vidar.stiernstrom@gmail.com> |
---|---|
date | Sun, 07 Jul 2024 15:15:12 -0700 |
parents | 48596b2f7923 |
children | 471a948cd2b2 |
line wrap: on
line diff
--- a/test/SbpOperators/boundary_conditions/boundary_condition_test.jl Sat Jun 29 17:06:27 2024 +0200 +++ b/test/SbpOperators/boundary_conditions/boundary_condition_test.jl Sun Jul 07 15:15:12 2024 -0700 @@ -15,8 +15,8 @@ g = 3.14 f(x,y,z) = x^2+y^2+z^2 @testset "Constructors" begin - @test DirichletCondition(g,id_l) isa DirichletCondition{Float64,Lower} - @test NeumannCondition(f,id_b) isa NeumannCondition{<:Function,CartesianBoundary{3,Lower}} + @test DirichletCondition(g,id_l) isa DirichletCondition{Float64,LowerBoundary} + @test NeumannCondition(f,id_b) isa NeumannCondition{<:Function,CartesianBoundary{3,LowerBoundary}} end @testset "boundary" begin