From a33c555e2c5fb03e91a409410a459b95cb9d2b61 Mon Sep 17 00:00:00 2001 From: Josua Grawitter Date: Thu, 1 Oct 2020 00:17:47 +0200 Subject: [PATCH] test: fix BigFloat test case --- test/interval_tests/construction.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/interval_tests/construction.jl b/test/interval_tests/construction.jl index c1b25fa3f..adbf2f73e 100644 --- a/test/interval_tests/construction.jl +++ b/test/interval_tests/construction.jl @@ -351,7 +351,7 @@ end @test isequal(hash(x), hash(y)) x = 0.1 - y = IntervalArithmetic.big53(x) + y = IntervalArithmetic.bigequiv(x) @test isequal(x, y) @test isequal(hash(x), hash(y))