Skip to content

Commit 138c3d3

Browse files
fix
1 parent d6f0721 commit 138c3d3

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
@@ -228,7 +228,7 @@ testdict = Dict([:test => 1])
228228
@test prob_.u0 == [1.0, 2.0, 3.0]
229229
@test prob_.p == [1.1, 1.2, 1.3]
230230

231-
prob_ = remake(prob, u0 = Dict(sys.y => 2.0), p = Dict(sys.a => 2.0))
231+
prob_ = remake(prob, u0 = Dict(y => 2.0), p = Dict(a => 2.0))
232232
@test_broken prob_.u0 == [1.0, 2.0, 1.0] # TODO: needs a `remake(prob::NonlinearProblem, ...)` in SciMLBase
233233
@test_broken prob_.p == [2.0, 1.0, 1.0]
234234
end

0 commit comments

Comments
 (0)