From 5c6e7f16c04b6b577d98ddfd52435ab5596fb9f6 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Fri, 18 Jul 2014 11:55:43 +0900 Subject: [PATCH] fix r7rs-tests. rational literal is not required to generate an exact value --- t/r7rs-tests.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/r7rs-tests.scm b/t/r7rs-tests.scm index eeac935e..45db84d1 100644 --- a/t/r7rs-tests.scm +++ b/t/r7rs-tests.scm @@ -827,7 +827,7 @@ (test 3.0 (truncate 3.5)) (test 4.0 (round 3.5)) -(test 4 (round 7/2)) +(test 4 (exact (round 7/2))) (test 7 (round 7)) ;; (test 1/3 (rationalize (exact .3) 1/10))