diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-07-05 16:43:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-05 16:43:37 +0200 |
commit | 87d37a02f7642129a6d225fcd77df41cb314ab40 (patch) | |
tree | 456495e64a6156bab5ec54517041ace7f87ca7a9 | |
parent | 7d8c8b3194d919a4cd462881981434d3b66ef08d (diff) | |
download | guix-87d37a02f7642129a6d225fcd77df41cb314ab40.tar guix-87d37a02f7642129a6d225fcd77df41cb314ab40.tar.gz |
tests: Fix typo in 'tests/store.scm'.
This typo had always been there since the test was introduced in commit
ce72c780746776a86f59747f5eff8731cb4ff39b. Presumably, it became visible
with 9e5812ac59b01ff011ec0c5b0f437dfe85d6fcc7, where caching was no
longer global and thus the 'store' argument of 'package-derivation' was
actually being used.
* tests/store.scm ("current-build-output-port, UTF-8"): Refer to
'%store' rather than 's' in 'package-derivation' call.
-rw-r--r-- | tests/store.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/store.scm b/tests/store.scm index 3266fa7a82..d77c26192a 100644 --- a/tests/store.scm +++ b/tests/store.scm @@ -534,7 +534,8 @@ (d (build-expression->derivation %store "foo" `(display ,s) #:guile-for-build - (package-derivation s %bootstrap-guile (%current-system))))) + (package-derivation %store %bootstrap-guile + (%current-system))))) (guard (c ((store-protocol-error? c) #t)) (build-derivations %store (list d)))))))) "Here’s a Greek letter: λ.")) |