diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-07 22:53:23 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-07 22:53:46 +0100 |
commit | ad85c617b5889ed60b154a249d6c4339bc51eac1 (patch) | |
tree | 2473ffa4bbdc5de9897e1783bb885c88d15624e7 /tests | |
parent | e7aa73ef0970a35818728195748b4a3dae6809ef (diff) | |
download | patches-ad85c617b5889ed60b154a249d6c4339bc51eac1.tar patches-ad85c617b5889ed60b154a249d6c4339bc51eac1.tar.gz |
snix: Update `license' check in unit test.
* tests/snix.scm ("nixpkgs->guix-package"): Expect `license' to be a
symbol. This is a follow-up to commit e7aa73e.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/snix.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/snix.scm b/tests/snix.scm index 7623d0cd8f..89582f2408 100644 --- a/tests/snix.scm +++ b/tests/snix.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -61,7 +61,7 @@ ('home-page (? string?)) ('synopsis (? string?)) ('description (? string?)) - ('license (? string?))) + ('license (? symbol?))) (and (member '("libffi" ,libffi) inputs) (member '("gmp" ,gmp) pinputs) #t)) |