Skip to content

Commit 3d5b5f0

Browse files
Update tables.jl
1 parent 5797e6c commit 3d5b5f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/downstream/tables.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sol1 = solve(prob, Euler(); dt = 1 // 2^(4));
55
df = DataFrame(sol1)
66
@test names(df) == ["timestamp", "value1", "value2", "value3", "value4"]
77

8-
prob = ODEProblem(ODEFunction(f_2dlinear, sys = SymbolicIndexingInterface.SymbolCache(syms, paramsyms, indepsym), rand(2, 2), (0.0, 1.0)));
8+
prob = ODEProblem(ODEFunction(f_2dlinear, sys = SymbolicIndexingInterface.SymbolCache([:a, :b, :c, :d], [], :t), rand(2, 2), (0.0, 1.0)));
99
sol2 = solve(prob, Euler(); dt = 1 // 2^(4));
1010
df = DataFrame(sol2)
1111
@test names(df) == ["timestamp", "a", "b", "c", "d"]

0 commit comments

Comments
 (0)