tests: Avoid sequence of zero expressions.
authorLudovic Courtès <ludo@gnu.org>
Thu, 11 Jun 2015 21:28:31 +0000 (23:28 +0200)
committerLudovic Courtès <ludo@gnu.org>
Thu, 11 Jun 2015 21:33:32 +0000 (23:33 +0200)
* tests/records.scm ("define-record-type* with let* behavior"): Add missing
  body for clause.

tests/records.scm

index 6346c15..800ed03 100644 (file)
@@ -56,7 +56,7 @@
     (and (match (bar (x 1) (y (+ x 1)) (z (* y 2)))
            (($ <bar> 1 2 4) #t))
          (match (bar (x 7) (z (* x 3)))
-           (($ <bar> 7 42 21)))
+           (($ <bar> 7 42 21) #t))
          (match (bar (z 21) (x (/ z 3)))
            (($ <bar> 7 42 21) #t)))))