diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-04-29 00:57:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-04-29 01:22:04 +0200 |
commit | 9dc1c591a4fe90e823ed69fb52c055b98d4699f6 (patch) | |
tree | cbd7752a035886a8c6c294cf43c95c7c4f8f12b1 /tests | |
parent | 524c9800afb433cc474132185d8e37f72004adb3 (diff) | |
download | guix-9dc1c591a4fe90e823ed69fb52c055b98d4699f6.tar guix-9dc1c591a4fe90e823ed69fb52c055b98d4699f6.tar.gz |
inferior: Make sure test refers to guile@3.0.
* tests/inferior.scm ("inferior-package-inputs"): Compare with
GUILE-3.0-LATEST since that's what 'lookup-inferior-packages' returns.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/inferior.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/inferior.scm b/tests/inferior.scm index 7c3d730d0c..f227e0b749 100644 --- a/tests/inferior.scm +++ b/tests/inferior.scm @@ -173,9 +173,9 @@ ,(package-version package) ,(package-location package)) ,@rest))))) - (list (map ->list (package-inputs guile-2.2)) - (map ->list (package-native-inputs guile-2.2)) - (map ->list (package-propagated-inputs guile-2.2)))) + (list (map ->list (package-inputs guile-3.0-latest)) + (map ->list (package-native-inputs guile-3.0-latest)) + (map ->list (package-propagated-inputs guile-3.0-latest)))) (let* ((inferior (open-inferior %top-builddir #:command "scripts/guix")) (guile (first (lookup-inferior-packages inferior "guile"))) |