Skip to content

Commit

Permalink
tighten tols
Browse files Browse the repository at this point in the history
  • Loading branch information
oscardssmith committed Aug 19, 2024
1 parent 3456aec commit 7f00225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/interface/linear_solver_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ end
@testset "$solname" for (solname, solver) in pairs(solvers)
sol = solve(prob, solver, maxiters = 2e4)
@test sol.retcode == ReturnCode.Success
@test isapprox(sol.u[end], refsol.u[end], rtol = 1e-2, atol = 1e-5)
@test isapprox(sol.u[end], refsol.u[end], rtol = 2e-3, atol = 1e-6)
end
end
end

0 comments on commit 7f00225

Please sign in to comment.