diff --git a/test/dsl/dsl_options.jl b/test/dsl/dsl_options.jl index 5f8d317947..04247d0778 100644 --- a/test/dsl/dsl_options.jl +++ b/test/dsl/dsl_options.jl @@ -895,7 +895,7 @@ let @test equations(rn)[3] isa Equation # Checks that simulations has the correct output - u0 = Dict([S => 1 + rand(rng), X => 1 + rand(rng), Y => 1 + rand(rng)]) + u0 = Dict([S => 1 + rand(rng), Y => 1 + rand(rng)]) ps = Dict([p => 1 + rand(rng), d => 1 + rand(rng), k => 1 + rand(rng)]) oprob = ODEProblem(rn, u0, (0.0, 10000.0), ps; structural_simplify=true) sol = solve(oprob, Tsit5(); abstol=1e-9, reltol=1e-9)