Skip to content

Commit

Permalink
Fixes of broken tests for Julia v1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lbenet committed Feb 26, 2022
1 parent 8df974f commit c419d9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/TM1.jl
Expand Up @@ -396,7 +396,7 @@ end
tma = acos(tv)
tmb = cos(tma)
@test tmb == cos(acos(tv))
@test sup(norm(tmb.pol - tv.pol, Inf)) < 1.0e-16
@test sup(norm(tmb.pol - tv.pol, Inf)) < 5.0e-16

tma = tan(tv)
tmb = atan(tma)
Expand Down Expand Up @@ -937,7 +937,7 @@ end
tma = acos(tv)
tmb = cos(tma)
@test tmb == cos(acos(tv))
@test sup(norm(tmb.pol - tv.pol, Inf)) < 1.0e-16
@test sup(norm(tmb.pol - tv.pol, Inf)) < 5.0e-16

tma = tan(tv)
tmb = atan(tma)
Expand Down
2 changes: 1 addition & 1 deletion test/TMN.jl
Expand Up @@ -230,7 +230,7 @@ set_variables(Interval{Float64}, [:x, :y], order=_order_max)
tma = acos(ym)
tmb = cos(tma)
@test tmb == cos(acos(ym))
@test sup(norm(tmb.pol - ym.pol, Inf)) < 1.0e-16
@test sup(norm(tmb.pol - ym.pol, Inf)) < 5.0e-16

tma = tan(xm)
tmb = atan(tma)
Expand Down

0 comments on commit c419d9a

Please sign in to comment.