Skip to content

Commit eaa0ca4

Browse files
committed
Fix more tests
Signed-off-by: ErikQQY <[email protected]>
1 parent cf11f60 commit eaa0ca4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/outofplace_arrays.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A = [-1.0 0.0; 0.0 -0.5]
55
u0 = [1.0, 1.0]; tspan = (0.0,1.0)
66
_f = (u,p,t) -> t*(A*u)
77
_g = (u,p,t) -> 1.0
8-
prob = SDEProblem(SDEFunction(_f, _g), _g, u0, tspan)
8+
prob = SDEProblem(SDEFunction(_f, _g), u0, tspan)
99
integrator = init(prob, SKenCarp(); adaptive=false, dt=0.01)
1010
step!(integrator)
1111
@test_broken solve(prob, SOSRI(); adaptive=false, dt=0.01) isa RODESolution
@@ -18,7 +18,7 @@ solve(prob, SOSRA2(); adaptive=false, dt=0.01)
1818

1919
println("Vector g")
2020
_g = (u,p,t) -> [1.0, 1.0]
21-
prob = SDEProblem(SDEFunction(_f, _g), _g, u0, tspan)
21+
prob = SDEProblem(SDEFunction(_f, _g), u0, tspan)
2222
println("Implicit EM")
2323
integrator = init(prob, ImplicitEM(); adaptive=false, dt=0.01)
2424
step!(integrator)

0 commit comments

Comments
 (0)