Skip to content

Commit 05c6579

Browse files
author
Brad Carman
committed
Merge branch 'myb/ps' of https://github.com/SciML/ModelingToolkit.jl into myb/ps
2 parents d53907e + 77a8792 commit 05c6579

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/split_parameters.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ prob = ODEProblem(sys, [], (0.0, t_end), [s.src.data => x])
5050
@test prob.p isa Tuple{Vector{Float64}, Vector{Int}, Vector{Vector{Float64}}}
5151
sol = solve(prob, ImplicitEuler());
5252
@test sol.retcode == ReturnCode.Success
53-
@test sol[y][end] == x[end]
54-
53+
@test sol[y][end] == x[end]
5554

5655
# ------------------------ Mixed Type Converted to float (default behavior)
5756

@@ -78,6 +77,3 @@ prob = ODEProblem(sys, [], tspan, []; tofloat = false)
7877
@test prob.p isa Tuple{Vector{Float64}, Vector{Int64}}
7978
sol = solve(prob, ImplicitEuler());
8079
@test sol.retcode == ReturnCode.Success
81-
82-
83-

0 commit comments

Comments
 (0)