Skip to content

Commit d8c46c3

Browse files
Fix another deprecationwarning in appxtrue(, ::TestSolution)
1 parent 0ae7b4f commit d8c46c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test_solution.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ calculated.
4141
"""
4242
function appxtrue(sol::AbstractODESolution, sol2::TestSolution)
4343
if sol2.u == nothing && hasinterp(sol2)
44-
_sol = TestSolution(sol.t, sol2(sol.t), sol2)
44+
_sol = TestSolution(sol.t, sol2(sol.t).u, sol2)
4545
else
4646
_sol = sol2
4747
end

0 commit comments

Comments
 (0)