From c5f24c64ceb04e0df9742b19f3f024bca67f2563 Mon Sep 17 00:00:00 2001 From: Alexis King Date: Sat, 31 Oct 2015 18:10:58 -0700 Subject: [PATCH] Allow asin and acos to return an exact zero result in the R7RS tests --- tests/r7rs-tests.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/r7rs-tests.scm b/tests/r7rs-tests.scm index 86ed281a..66e1df38 100644 --- a/tests/r7rs-tests.scm +++ b/tests/r7rs-tests.scm @@ -836,9 +836,9 @@ (test 0.0 (inexact (tan 0))) ;; may return exact number (test 1.5574077246549 (tan 1)) -(test 0.0 (asin 0)) +(test 0.0 (inexact (asin 0))) ;; may return exact number (test 1.5707963267949 (asin 1)) -(test 0.0 (acos 1)) +(test 0.0 (inexact (acos 1))) ;; may return exact number (test 3.14159265358979 (acos -1)) (test 0.0 (atan 0.0 1.0))