Skip to content

Commit

Permalink
Fix tests on Julia <1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sostock committed Nov 16, 2024
1 parent efdd33d commit a2c1279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ Base.:(<=)(x::Issue399, y::Issue399) = x.num <= y.num

@test @inferred(sincos(250mrad)) === sincos(0.25)
@test @inferred(sincos((1+2im)rad)) === sincos(1+2im)
@test @inferred(sincos(30°)) === sincosd(30)
@test @inferred(sincos(30°)) === (sind(30), cosd(30))

@test @inferred(sinh(0.0rad)) == 0.0
@test @inferred(sinh(1J/N/m) + cosh(1rad)) MathConstants.e
Expand Down

0 comments on commit a2c1279

Please sign in to comment.