* tests/syntax.test ("let*"): Changed the `duplicate bindings'
authorMartin Grabmüller <mgrabmue@cs.tu-berlin.de>
Fri, 9 Mar 2001 09:44:26 +0000 (09:44 +0000)
committerMartin Grabmüller <mgrabmue@cs.tu-berlin.de>
Fri, 9 Mar 2001 09:44:26 +0000 (09:44 +0000)
test, dups are allowed in `let*' and are now expected to pass.

test-suite/ChangeLog
test-suite/tests/syntax.test

index 9a0037f..92b08fb 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-09  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       * tests/syntax.test ("let*"): Changed the `duplicate bindings'
+       test, dups are allowed in `let*' and are now expected to pass.
+
 2001-03-05  Dirk Herrmann  <D.Herrmann@tu-bs.de>
 
        * lib.scm (run-test-exception):  Preserve the original error's
 2001-03-05  Dirk Herrmann  <D.Herrmann@tu-bs.de>
 
        * lib.scm (run-test-exception):  Preserve the original error's
index a1d3c62..7463d88 100644 (file)
 
   (with-test-prefix "duplicate bindings"
 
 
   (with-test-prefix "duplicate bindings"
 
-    (pass-if-exception "(let* ((x 1) (x 2)) x)"
-      exception:duplicate-bindings
-      (let* ((x 1) (x 2)) x))))
+    (pass-if "(let* ((x 1) (x 2)) x)"
+      (let* ((x 1) (x 2)) #t))))
 
 (with-test-prefix "letrec"
 
 
 (with-test-prefix "letrec"