From af8eb2aac636eb1f82dadeb0ca87313d151bed1e Mon Sep 17 00:00:00 2001 From: Michael Ingold Date: Fri, 4 Oct 2024 21:22:22 -0400 Subject: [PATCH] Fix tests --- test/combinations.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/combinations.jl b/test/combinations.jl index 159b6a0e..de2e6b64 100644 --- a/test/combinations.jl +++ b/test/combinations.jl @@ -458,6 +458,7 @@ end tetrahedron = Tetrahedron(pt_n, pt_w, pt_e, pt_n + ẑ) f = p -> one(Float64) + fv(p) = fill(f(p), 3) # Scalar integrand sol = Meshes.measure(tetrahedron) @@ -474,5 +475,5 @@ end # Integral aliases @test_throws "not supported" lineintegral(f, tetrahedron) @test_throws "not supported" surfaceintegral(f, tetrahedron) - @test volumeintegral(f, tetrahedron) ≈ sol + @test volumeintegral(f, tetrahedron, GaussKronrod()) ≈ sol end