@@ -58,7 +58,7 @@ ODEFunction(ofboth)
5858@inferred ODEFunction {false} (ofboth)
5959
6060jac (u, t) = [1.0 ]
61- @test_throws SciMLBase. NonconformingFunctionsError ODEFunction (fiip, jac = jac)
61+ @test_throws SciMLBase. TooFewArgumentsError ODEFunction (fiip, jac = jac)
6262@test_throws SciMLBase. TooFewArgumentsError ODEFunction (foop, jac = jac)
6363jac (u, p, t) = [1.0 ]
6464@test_throws SciMLBase. NonconformingFunctionsError ODEFunction (fiip, jac = jac)
@@ -832,8 +832,8 @@ itoo(y, u, p, a) = y .= u * p
832832
833833@test_throws SciMLBase. IntegrandMismatchFunctionError IntegralFunction (iiip)
834834@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[])
837837
838838# BatchIntegralFunction
839839
@@ -851,5 +851,5 @@ bitoo(y, u, p, a) = y .= p .* u
851851
852852@test_throws SciMLBase. IntegrandMismatchFunctionError BatchIntegralFunction (biip)
853853@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