Skip to content

Commit

Permalink
increase tolerance for some CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Aug 11, 2023
1 parent 50ec9a1 commit ed304d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/SBP_operators_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ end
mul!(res, D, x0)
@test all(i->abs(res[i]) < eps(T), eachindex(res))
mul!(res, D, x1)
@test all(i->abs(res[i]) < 30_000*eps(T), eachindex(res))
@test all(i->abs(res[i]) < 50_000*eps(T), eachindex(res))
# only interior
mul!(res, D, x2)
@test all(i->abs(res[i]) < 160_000*eps(T), inner_indices)
Expand Down

0 comments on commit ed304d3

Please sign in to comment.