Skip to content

Commit b26e35e

Browse files
authored
Revert unintentional changes
1 parent 58d77e1 commit b26e35e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/downstream/symbol_indexing.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ sol = solve(prob, Tsit5())
1515

1616
sol_new = DiffEqArray(
1717
sol.u[1:10],
18-
sol.t[1:10],
19-
sol.prob.f.syms,
20-
sol.prob.f.indepsym,
21-
sol.prob.f.observed,
18+
sol.t[1:10],
19+
sol.prob.f.syms,
20+
sol.prob.f.indepsym,
21+
sol.prob.f.observed,
2222
sol.prob.p
2323
)
2424

@@ -42,4 +42,4 @@ sol = solve(prob, Tsit5())
4242
ts = 0:0.5:10
4343
sol_ts = sol(ts)
4444
@assert sol_ts isa DiffEqArray
45-
test_tables_interface(sol_ts, [:timestamp, Symbol("x(t)"), Symbol("y(t)")], hcat(ts, Array(sol_ts)'))
45+
test_tables_interface(sol_ts, [:timestamp, Symbol("x(t)"), Symbol("y(t)")], hcat(ts, Array(sol_ts)'))

0 commit comments

Comments
 (0)