Skip to content

Commit 351fef5

Browse files
Update test/downstream/solve_error_handling.jl
1 parent fbb20f6 commit 351fef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/downstream/solve_error_handling.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ prob = ODEProblem{false}(f, (1.0, 1.0f0), tspan)
3737
prob = ODEProblem{false}(f, u0, (0.0 + im, 1.0))
3838
@test_throws DiffEqBase.ComplexTspanError solve(prob, Tsit5())
3939

40-
for u0 = ([0.0, 0.0], nothing
40+
for u0 in ([0.0, 0.0], nothing)
4141
fmm = ODEFunction(f, mass_matrix = zeros(3, 3))
4242
prob = ODEProblem(fmm, u0, (0.0, 1.0))
4343
@test_throws DiffEqBase.IncompatibleMassMatrixError solve(prob, Tsit5())

0 commit comments

Comments
 (0)