Skip to content

Commit

Permalink
test: refactor test for old parameter splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushSabharwal committed Oct 15, 2024
1 parent e67763a commit 03e294f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/split_parameters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ sol = solve(prob, ImplicitEuler());
prob = ODEProblem(
sys, [], tspan, []; tofloat = false, use_union = true, build_initializeprob = false)

@test prob.p isa Union{Float64, Int64}
@test prob.p isa Vector{Union{Float64, Int64}}
sol = solve(prob, ImplicitEuler());
@test sol.retcode == ReturnCode.Success

Expand Down

0 comments on commit 03e294f

Please sign in to comment.