Skip to content

Commit 6950927

Browse files
test: update test to account for new new initial propogation
1 parent c70f101 commit 6950927

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/nonlinearsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ testdict = Dict([:test => 1])
239239

240240
prob_ = remake(prob, u0 = [1.0, 2.0, 3.0], p = [a => 1.1, b => 1.2, c => 1.3])
241241
@test prob_.u0 == [1.0, 2.0, 3.0]
242-
initials = unknowns(sys) .=> ones(3)
242+
initials = unknowns(sys) .=> [1.0, 2.0, 3.0]
243243
@test prob_.p == MTKParameters(sys, [a => 1.1, b => 1.2, c => 1.3, initials...])
244244

245245
prob_ = remake(prob, u0 = Dict(y => 2.0), p = Dict(a => 2.0))

0 commit comments

Comments
 (0)