Skip to content

Commit

Permalink
Remove broken test for Julia 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierHnt committed Apr 9, 2024
1 parent a38d47c commit 649b4ae
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/interval_tests/power.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,12 @@ end
n = 2
@test isguaranteed(x ^ 2)
@test !isguaranteed(x ^ n)
@test_broken isguaranteed(x ^ 2.0)
@test_broken isguaranteed(x ^ 2305843009213693952)
@test !isguaranteed(x ^ 2.0)
if VERSION v"1.12-DEV"
@test isguaranteed(x ^ 2305843009213693952)
else
@test_broken isguaranteed(x ^ 2305843009213693952)
end
@test isequal_interval(x^2, interval(0,1))
@test isequal_interval(x^3, x)
end

0 comments on commit 649b4ae

Please sign in to comment.