From 880c28588298864092e1b35f5d60eaebba1b4bff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Grabm=C3=BCller?= Date: Fri, 9 Mar 2001 09:44:26 +0000 Subject: [PATCH] * tests/syntax.test ("let*"): Changed the `duplicate bindings' test, dups are allowed in `let*' and are now expected to pass. --- test-suite/ChangeLog | 5 +++++ test-suite/tests/syntax.test | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index 9a0037ff7..92b08fbd1 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,8 @@ +2001-03-09 Martin Grabmueller + + * 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 * lib.scm (run-test-exception): Preserve the original error's diff --git a/test-suite/tests/syntax.test b/test-suite/tests/syntax.test index a1d3c6269..7463d880b 100644 --- a/test-suite/tests/syntax.test +++ b/test-suite/tests/syntax.test @@ -219,9 +219,8 @@ (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"