Skip to content

Commit

Permalink
Update test/traits.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Dec 26, 2023
1 parent 0874d61 commit e30c782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/traits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ eqs = [D(x) ~ -x]
@named sys = ODESystem(eqs)
prob = ODEProblem(sys)
sol = solve(prob, Tsit5(), tspan=(0.0, 1.0))
df = DataFrame(sol) # worked before, doesn't work now
df = DataFrame(sol)
@test size(df) == (length(sol.u), 2)
@test df.timestamp == sol.t
@test df.x == sol[x]

0 comments on commit e30c782

Please sign in to comment.