diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-06-11 23:28:31 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-06-11 23:33:32 +0200 |
commit | 6c356414537fa8394b140b6593ce31df93e4a69d (patch) | |
tree | aeef237ba178823da3e9d69df9f0a3f8de56d1e9 /tests/records.scm | |
parent | ad7c1a2cde80c00f0394a48c0c2be0a478900eb4 (diff) | |
download | guix-6c356414537fa8394b140b6593ce31df93e4a69d.tar guix-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.scm | 2 |
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))))) |