diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-11-18 22:56:10 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-11-18 22:56:10 +0100 |
commit | bcff9d6388dc1cad38fbfb3983f97f52d0533301 (patch) | |
tree | 19610200dbbffa9ab243ec6afedb3d923f513c6b /tests/opam.scm | |
parent | 7d043abfdb4b915f57cf14c5d6f7dcbceb63ea25 (diff) | |
download | guix-bcff9d6388dc1cad38fbfb3983f97f52d0533301.tar.gz |
tests: Adjust opam and pypi tests to simplified inputs.
* tests/opam.scm ("opam->guix-package"): Expect simplified inputs. * tests/pypi.scm ("pypi->guix-package, package name contains \"-\" followed by digits"): Likewise.
Diffstat (limited to 'tests/opam.scm')
-rw-r--r-- | tests/opam.scm | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/opam.scm b/tests/opam.scm index cf65ded168..b5f02f809b 100644 --- a/tests/opam.scm +++ b/tests/opam.scm @@ -102,13 +102,9 @@ url { ('base32 (? string? hash))))) ('build-system 'ocaml-build-system) - ('propagated-inputs - ('quasiquote - (("ocaml-zarith" ('unquote 'ocaml-zarith))))) + ('propagated-inputs ('list 'ocaml-zarith)) ('native-inputs - ('quasiquote - (("ocaml-alcotest" ('unquote 'ocaml-alcotest)) - ("ocamlbuild" ('unquote 'ocamlbuild))))) + ('list 'ocaml-alcotest 'ocamlbuild)) ('home-page "https://example.org/") ('synopsis "Some example package") ('description "This package is just an example.") |