From c6b15ad07e26d45323b2556e48a497ea6c9dbb7f Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Fri, 13 Jun 1997 05:50:28 +0000 Subject: [PATCH] * test.scm: Re-enable tests asserting that '() is true, and not a boolean. This stuff has been true for a while. --- ice-9/test.scm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ice-9/test.scm b/ice-9/test.scm index 7cf66411f..912b7de37 100644 --- a/ice-9/test.scm +++ b/ice-9/test.scm @@ -273,15 +273,13 @@ (test #f not 3) (test #f not (list 3)) (test #t not #f) -;;; Not for Guile -;(test #f not '()) -;(test #f not (list)) +(test #f not '()) +(test #f not (list)) (test #f not 'nil) (test #t boolean? #f) (test #f boolean? 0) -;;; Not for Guile -;(test #f boolean? '()) +(test #f boolean? '()) (SECTION 6 2) (test #t eqv? 'a 'a) (test #f eqv? 'a 'b)