summaryrefslogtreecommitdiff
path: root/tests/records.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-06-11 23:28:31 +0200
committerLudovic Courtès <ludo@gnu.org>2015-06-11 23:33:32 +0200
commit6c356414537fa8394b140b6593ce31df93e4a69d (patch)
treeaeef237ba178823da3e9d69df9f0a3f8de56d1e9 /tests/records.scm
parentad7c1a2cde80c00f0394a48c0c2be0a478900eb4 (diff)
downloadpatches-6c356414537fa8394b140b6593ce31df93e4a69d.tar
patches-6c356414537fa8394b140b6593ce31df93e4a69d.tar.gz
tests: Avoid sequence of zero expressions.
* tests/records.scm ("define-record-type* with let* behavior"): Add missing body for clause.
Diffstat (limited to 'tests/records.scm')
-rw-r--r--tests/records.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/records.scm b/tests/records.scm
index 6346c154cd..800ed03827 100644
--- a/tests/records.scm
+++ b/tests/records.scm
@@ -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)))))