Skip to content

Commit 0f74970

Browse files
Merge pull request #3150 from AayushSabharwal/as/dde-u0-ctor
test: fix `u0_constructor` test for `SDDEProblem`
2 parents b60c152 + 8c17931 commit 0f74970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/dde.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ prob_mtk = SDDEProblem(sys, [x(t) => 1.0 + t], tspan; constant_lags = (τ,));
9191

9292
prob_sa = SDDEProblem(
9393
sys, [x(t) => 1.0 + t], tspan; constant_lags = (τ,), u0_constructor = SVector{1})
94-
@test prob_sa.u0 isa SVector{4, Float64}
94+
@test prob_sa.u0 isa SVector{1, Float64}
9595

9696
@parameters x(..) a
9797

0 commit comments

Comments
 (0)