tests: Fix typo in 'tests/store.scm'.

This typo had always been there since the test was introduced in commit
ce72c78074.  Presumably, it became visible
with 9e5812ac59, 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:
Ludovic Courtès 2021-07-05 16:43:37 +02:00
parent 7d8c8b3194
commit 87d37a02f7
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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))))))))
"Heres a Greek letter: λ."))