From 17e3b0ee5ac34320b7fd8625d0b9da7595ad63ad Mon Sep 17 00:00:00 2001 From: Aayush Sabharwal Date: Wed, 9 Oct 2024 15:08:02 +0530 Subject: [PATCH] test: `AbstractDiffEqArray` is no longer `isrowtable` --- test/traits.jl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/traits.jl b/test/traits.jl index bb97dae9f..1d7461481 100644 --- a/test/traits.jl +++ b/test/traits.jl @@ -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)