Skip to content

Commit 3335790

Browse files
Apply suggestions from code review
Co-authored-by: Christopher Rackauckas <accounts@chrisrackauckas.com>
1 parent 202a335 commit 3335790

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/simulation_and_solving/hybrid_models.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ let
188188

189189
# Solves and checks values of solution (do this before integrator mutation test
190190
# since integrator mutation affects shared parameter state).
191-
sol = solve(prob, Tsit5(); maxiters = 10)
191+
sol = solve(prob, Tsit5(); maxiters = 10, verbose = ODEVerbosity(SciMLLogging.None()))
192192
@test sol[:X][1] == 1.0
193193
@test sol[:X2][1] == 0.0
194194
@test sol[:Y][1] == 0.0
@@ -215,7 +215,7 @@ let
215215
@test prob2.ps[:d] == 0.5 # not changed
216216

217217
# Test that we can solve the remade problem and verify solution values.
218-
sol2 = solve(prob2, Tsit5(); maxiters = 10)
218+
sol2 = solve(prob2, Tsit5(); maxiters = 10, verbose = ODEVerbosity(SciMLLogging.None()))
219219
@test sol2[:X][1] == 3.0
220220
@test sol2[:X2][1] == 2.0
221221
@test sol2[:Y][1] == 1.0

0 commit comments

Comments
 (0)