Skip to content

Commit 03e294f

Browse files
test: refactor test for old parameter splitting
1 parent e67763a commit 03e294f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/split_parameters.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ sol = solve(prob, ImplicitEuler());
125125
prob = ODEProblem(
126126
sys, [], tspan, []; tofloat = false, use_union = true, build_initializeprob = false)
127127

128-
@test prob.p isa Union{Float64, Int64}
128+
@test prob.p isa Vector{Union{Float64, Int64}}
129129
sol = solve(prob, ImplicitEuler());
130130
@test sol.retcode == ReturnCode.Success
131131

0 commit comments

Comments
 (0)