~ruther/guix-local

6c356414537fa8394b140b6593ce31df93e4a69d — Ludovic Courtès 10 years ago ad7c1a2
tests: Avoid sequence of zero expressions.

* tests/records.scm ("define-record-type* with let* behavior"): Add missing
  body for clause.
1 files changed, 1 insertions(+), 1 deletions(-)

M tests/records.scm
M tests/records.scm => tests/records.scm +1 -1
@@ 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)))))