aboutsummaryrefslogtreecommitdiff
path: root/tests/elm.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2024-09-16 22:34:08 +0200
committerLudovic Courtès <ludo@gnu.org>2024-09-17 17:34:58 +0200
commit7979001c58fcadd98bae09781c495f0a462d6e04 (patch)
tree6f48f42cdd428c3a83fc723751d95503309893bb /tests/elm.scm
parenteed2fcc719e0d32ee914794adae7166067d2f9a8 (diff)
downloadguix-7979001c58fcadd98bae09781c495f0a462d6e04.tar.gz
guix-7979001c58fcadd98bae09781c495f0a462d6e04.zip
tests: Adjust ‘elm’ importer test to expect inputs without labels.
This is a followup af85c38b017be3d932d4665acd9ff4b5c56a9790. * tests/elm.scm ("(guix import elm)"): Expect new-style inputs. Change-Id: If3c6b17b5a5d17ad443c3ddb05f94dc2458ba182
Diffstat (limited to 'tests/elm.scm')
-rw-r--r--tests/elm.scm6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/elm.scm b/tests/elm.scm
index 48d3eb4b01..279a66a25f 100644
--- a/tests/elm.scm
+++ b/tests/elm.scm
@@ -249,10 +249,8 @@ package definition."
version
(base32 ,(? string? hash))))
(build-system elm-build-system)
- (propagated-inputs
- ,'`(("elm-core" ,elm-core)))
- (inputs
- ,'`(("elm-json" ,elm-json)))
+ (propagated-inputs (list elm-core))
+ (inputs (list elm-json))
(home-page
"https://package.elm-lang.org/packages/elm-guix/demo/3.0.0")
(synopsis "A test for `(guix import elm)`")