Skip to content

Commit 6740b8c

Browse files
committed
test fix
1 parent 810d4fa commit 6740b8c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/bvproblem.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,11 @@ let
113113
[u(0.0)[1] - 1., u(0.5)[2] - 2.]
114114
end
115115

116+
u0 = [1., 1.]
117+
tspan = (0., 1.)
118+
p = [1.5, 1., 1., 3.]
116119
bvpi1 = SciMLBase.BVProblem(lotkavolterra!, bc!, u0, tspan, p)
117-
bvpi1 = SciMLBase.BVProblem(lotkavolterra, bc, u0, tspan, p)
120+
bvpi2 = SciMLBase.BVProblem(lotkavolterra, bc, u0, tspan, p)
118121
bvpi3 = SciMLBase.BVProblem{true, SciMLBase.AutoSpecialize}(lksys, [x(t) => 1.], tspan; guesses = [y(t) => 1.])
119122
bvpi4 = SciMLBase.BVProblem{false, SciMLBase.FullSpecialize}(lksys, [x(t) => 1.], tspan; guesses = [y(t) => 1.])
120123

0 commit comments

Comments
 (0)