From fb77fc13d86c620326eb1e8c15162182e9b7d105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sat, 20 Apr 2019 21:59:03 +0200 Subject: Fix up tests. --- tests/let.scm | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tests/let.scm') diff --git a/tests/let.scm b/tests/let.scm index 53f39e4c..02e38a42 100644 --- a/tests/let.scm +++ b/tests/let.scm @@ -1,7 +1,5 @@ (use-modules (util)) -(test-begin "let") - (test-assert (let* ((a #t)) a)) (test-assert (let* (((a . b) '(#t . #f))) a)) (test-assert (let* (((a . b) (cons* #f #t))) b)) @@ -14,5 +12,3 @@ (test-equal 30 (let* (x y) (set! x 10) (set! y 20) (+ x y))) (test-assert (let* (x) (not x))) (test-equal 6 (let* ((x 1) y z) (set! y 2) (set! z 3) (+ x y z))) - -(test-end "let") -- cgit v1.2.3