diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-03-08 15:22:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-03-08 23:42:52 +0100 |
commit | dd420bf3430eb644b93ca224da4c0a3f5db7a42f (patch) | |
tree | 2d5af3b7d38969fdbc3a9d667c4b40b6ef52384a /tests | |
parent | 6f38960055e496193a49d690d7f1b5516b2b8625 (diff) | |
download | guix-dd420bf3430eb644b93ca224da4c0a3f5db7a42f.tar guix-dd420bf3430eb644b93ca224da4c0a3f5db7a42f.tar.gz |
tests: Avoid zero-expression 'begin' form.
* tests/cran.scm ("description->package"): Add body after the expected
pattern in 'match'.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cran.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/cran.scm b/tests/cran.scm index f92934c468..c162d45d8a 100644 --- a/tests/cran.scm +++ b/tests/cran.scm @@ -126,7 +126,8 @@ Date/Publication: 2015-07-14 14:15:16 "This is a long description spanning multiple lines: \ and it could confuse the parser that there is a colon : on the \ lines. And: this line continues the description.") - ('license 'gpl3+))) + ('license 'gpl3+)) + #t) (x (begin (format #t "~s\n" x) |