Skip to content

Commit b57e938

Browse files
Fix the failing tests by relaxing the stats vector to Any
1 parent e2627a4 commit b57e938

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/benchmark.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ function WorkPrecision(prob, alg, abstols, reltols, dts = nothing;
185185
N = length(abstols)
186186
errors = Vector{Float64}(undef, N)
187187
times = Vector{Float64}(undef, N)
188-
stats = Vector{SciMLBase.DEStats}(undef, N)
188+
stats = Vector{Any}(undef, N)
189189
if name === nothing
190190
name = "WP-Alg"
191191
end

0 commit comments

Comments
 (0)