Skip to content

Commit

Permalink
test: AbstractDiffEqArray is no longer isrowtable
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushSabharwal committed Oct 9, 2024
1 parent 8984269 commit 17e3b0e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/traits.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using SciMLBase, Tables, Test
using OrdinaryDiffEq, DataFrames, SymbolicIndexingInterface

@test Tables.isrowtable(ODESolution)
@test Tables.isrowtable(RODESolution)
@test Tables.isrowtable(DAESolution)
# https://github.com/SciML/SciMLBase.jl/pull/813#issuecomment-2401803039
@test !Tables.isrowtable(ODESolution)
@test !Tables.isrowtable(RODESolution)
@test !Tables.isrowtable(DAESolution)
@test !Tables.isrowtable(SciMLBase.NonlinearSolution)
@test !Tables.isrowtable(SciMLBase.LinearSolution)
@test !Tables.isrowtable(SciMLBase.QuadratureSolution)
Expand Down

0 comments on commit 17e3b0e

Please sign in to comment.