tests: Avoid sequence of zero expressions.

* tests/records.scm ("define-record-type* with let* behavior"): Add missing
  body for clause.
master
Ludovic Courtès 2015-06-11 23:28:31 +02:00
parent ad7c1a2cde
commit 6c35641453
1 changed files with 1 additions and 1 deletions

View 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)))))