From 2ebc7d17cd66b116d277b19f32439a4eaa51f74c Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 11 Apr 2019 09:59:12 +0200 Subject: [PATCH] Use integers as test bounds for Homogeneous --- Kernel_23/test/Kernel_23/include/CGAL/_test_angle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel_23/test/Kernel_23/include/CGAL/_test_angle.h b/Kernel_23/test/Kernel_23/include/CGAL/_test_angle.h index c2edc990eb0..03534dea9dd 100644 --- a/Kernel_23/test/Kernel_23/include/CGAL/_test_angle.h +++ b/Kernel_23/test/Kernel_23/include/CGAL/_test_angle.h @@ -76,7 +76,7 @@ _test_angle(const R&) assert( CGAL::angle( org3, sx, sy, vz) == CGAL::ACUTE ); assert( CGAL::angle( org3, sx, sy, vcoplanar) == CGAL::RIGHT ); assert( CGAL::angle( org3, sx, sy, vmz) == CGAL::OBTUSE ); - assert( CGAL::approximate_angle( sx, org3, sy ) > RT(89.9) ); + assert( CGAL::approximate_angle( sx, org3, sy ) > RT(89) ); assert( CGAL::approximate_angle( sx-org3, sy-org3 ) > RT(89) ); assert( CGAL::approximate_angle( sx, org3, sy ) < RT(91) ); assert( CGAL::approximate_angle( sx, org3, sx ) == RT(0) );