We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b556b commit ab751b9Copy full SHA for ab751b9
test/interface_tests.jl
@@ -347,7 +347,8 @@ end
347
@testset "Allowed keyword test" begin
348
f(u, p) = sum(sin.(u))
349
prob = IntegralProblem(f, ones(3), 3ones(3))
350
- @test_throws "Unrecognized keyword arguments found." solve(prob, HCubatureJL();
351
- relztol = 1e-3,
352
- abstol = 1e-3)
+ @test_throws Integrals.CommonKwargError((:relztol => 1e-3, :abstol => 1e-3)) solve(prob,
+ HCubatureJL();
+ relztol = 1e-3,
353
+ abstol = 1e-3)
354
end
0 commit comments