Skip to content

Commit

Permalink
Update test/interface/static_array_tests.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Dec 18, 2023
1 parent 1ed5ccc commit 8296bc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/interface/static_array_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ sol = solve(ode, Euler(), dt = 1e-2)
sol = solve(ode, Tsit5(), dt = 1e-2)
@test !any(iszero.(sol(1.0))) && !any(sol(1.0) .== u0)

u0 = VectorOfArray(ones(SVector{2, Float64}))
u0 = ones(SVector{2, Float64})
f = (u, p, t) -> u
ode = ODEProblem(f, u0, (0.0, 1.0))
sol = solve(ode, Euler(), dt = 1e-2)
Expand Down

0 comments on commit 8296bc3

Please sign in to comment.