mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
tests: Fix typo in 'tests/store.scm'.
This typo had always been there since the test was introduced in commitce72c78074
. Presumably, it became visible with9e5812ac59
, 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.
This commit is contained in:
parent
7d8c8b3194
commit
87d37a02f7
1 changed files with 2 additions and 1 deletions
|
@ -534,7 +534,8 @@ (define (same? x y)
|
|||
(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: λ."))
|
||||
|
|
Loading…
Reference in a new issue