@@ -58,7 +58,7 @@ ODEFunction(ofboth)
58
58
@inferred ODEFunction {false} (ofboth)
59
59
60
60
jac (u, t) = [1.0 ]
61
- @test_throws SciMLBase. NonconformingFunctionsError ODEFunction (fiip, jac = jac)
61
+ @test_throws SciMLBase. TooFewArgumentsError ODEFunction (fiip, jac = jac)
62
62
@test_throws SciMLBase. TooFewArgumentsError ODEFunction (foop, jac = jac)
63
63
jac (u, p, t) = [1.0 ]
64
64
@test_throws SciMLBase. NonconformingFunctionsError ODEFunction (fiip, jac = jac)
@@ -832,8 +832,8 @@ itoo(y, u, p, a) = y .= u * p
832
832
833
833
@test_throws SciMLBase. IntegrandMismatchFunctionError IntegralFunction (iiip)
834
834
@test_throws SciMLBase. TooFewArgumentsError IntegralFunction (i1)
835
- @test_throws SciMLBase. TooFewArgumentsError IntegralFunction (itoo)
836
- @test_throws SciMLBase. TooFewArgumentsError IntegralFunction (itoo, Float64[])
835
+ @test_throws SciMLBase. TooManyArgumentsError IntegralFunction (itoo)
836
+ @test_throws SciMLBase. TooManyArgumentsError IntegralFunction (itoo, Float64[])
837
837
838
838
# BatchIntegralFunction
839
839
@@ -851,5 +851,5 @@ bitoo(y, u, p, a) = y .= p .* u
851
851
852
852
@test_throws SciMLBase. IntegrandMismatchFunctionError BatchIntegralFunction (biip)
853
853
@test_throws SciMLBase. TooFewArgumentsError BatchIntegralFunction (bi1)
854
- @test_throws SciMLBase. TooFewArgumentsError BatchIntegralFunction (bitoo)
855
- @test_throws SciMLBase. TooFewArgumentsError BatchIntegralFunction (bitoo, Float64[])
854
+ @test_throws SciMLBase. TooManyArgumentsError BatchIntegralFunction (bitoo)
855
+ @test_throws SciMLBase. TooManyArgumentsError BatchIntegralFunction (bitoo, Float64[])
0 commit comments