changeset 687:5c229c889614 feature/boundary_quads

Fix bug in test.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Tue, 09 Feb 2021 14:40:26 +0100
parents 27dcac8fb350
children e9e46a587370
files test/testSbpOperators.jl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/test/testSbpOperators.jl	Tue Feb 09 13:44:00 2021 +0100
+++ b/test/testSbpOperators.jl	Tue Feb 09 14:40:26 2021 +0100
@@ -404,7 +404,7 @@
     @testset "quadrature" begin
         op = read_D2_operator(sbp_operators_path()*"standard_diagonal.toml"; order=4)
         @testset "0D" begin
-            H = quadrature(EquidistantGrid((),(),()),op.quadratureClosure)
+            H = quadrature(EquidistantGrid{Float64}(),op.quadratureClosure)
             @test H == IdentityMapping{Float64}()
             @test H isa TensorMapping{T,0,0} where T
         end