Skip to content

Commit 86bd7c7

Browse files
authored
Update test_functions.jl
1 parent 0e74125 commit 86bd7c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_functions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function jac_eval(rs::ReactionSystem, u, p, t; combinatoric_ratelaws = true, spa
5151
prob = ODEProblem(rs, u, 0.0, p; jac = true, combinatoric_ratelaws, sparse)
5252
J = sparse ? deepcopy(prob.f.jac_prototype) : zeros(length(u), length(u))
5353
prob.f.jac(J, prob.u0, prob.p, t)
54-
@test J prob.f.jac(prob.u0, prob.p, t)
54+
@test J prob.f.jac(prob.u0, prob.p, t) atol = 1e-14 rtol = 1e-14
5555
return J
5656
end
5757

0 commit comments

Comments
 (0)