diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-09-05 22:08:47 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-09-05 22:11:03 +0200 |
commit | cfc5d39888451b7576b48488f9b92aa70ecc5cec (patch) | |
tree | 1c72b2af2c7628bece1e26ed4f647b359cdfbee2 /tests/derivations.scm | |
parent | 6b44a09747d18f1570c26f135c7f1a88c317201c (diff) | |
download | guix-cfc5d39888451b7576b48488f9b92aa70ecc5cec.tar guix-cfc5d39888451b7576b48488f9b92aa70ecc5cec.tar.gz |
tests: Fix typos.
* tests/derivations.scm ("substitutable-derivation?",
"derivation-prerequisites-to-build and substitutes, local build"): Fix
harmless typos.
Diffstat (limited to 'tests/derivations.scm')
-rw-r--r-- | tests/derivations.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/derivations.scm b/tests/derivations.scm index d2a090c8bc..21a832fabe 100644 --- a/tests/derivations.scm +++ b/tests/derivations.scm @@ -199,7 +199,7 @@ (and (substitutable-derivation? (derivation %store "foo" %bash '())) (substitutable-derivation? ;see <http://bugs.gnu.org/18747> (derivation %store "foo" %bash '() - #:local-build? #f)) + #:local-build? #t)) (not (substitutable-derivation? (derivation %store "foo" %bash '() #:substitutable? #f))))) @@ -663,7 +663,7 @@ (with-derivation-narinfo drv (let-values (((build download) (derivation-prerequisites-to-build store drv))) - ;; #:local-build? is not be synonymous with #:substitutable?, so we + ;; #:local-build? is *not* synonymous with #:substitutable?, so we ;; must be able to substitute DRV's output. ;; See <http://bugs.gnu.org/18747>. (and (null? build) |