diff options
author | Alex Kost <alezost@gmail.com> | 2015-07-18 17:05:28 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-07-18 17:05:28 +0300 |
commit | 9cced526100ceaf303ee9c70b320a6d19f301ae6 (patch) | |
tree | 34c9792b8f15d465b40dd584ab24707b5c0b0347 /tests/publish.scm | |
parent | e881752c39d455a249731a4e81e64d86f50afc34 (diff) | |
download | patches-9cced526100ceaf303ee9c70b320a6d19f301ae6.tar patches-9cced526100ceaf303ee9c70b320a6d19f301ae6.tar.gz |
tests: Fix 'publish' test for nix-base32 format.
This is a followup to commit 3b307162e892e0050836434b12e14376758419cc.
* tests/publish.scm ("/*.narinfo"): Use 'bytevector->nix-base32-string',
not 'bytevector->base32-string'.
Diffstat (limited to 'tests/publish.scm')
-rw-r--r-- | tests/publish.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/publish.scm b/tests/publish.scm index 60f57a8ddb..4d72fdc468 100644 --- a/tests/publish.scm +++ b/tests/publish.scm @@ -81,7 +81,7 @@ NarSize: ~d References: ~a~%" %item (basename %item) - (bytevector->base32-string + (bytevector->nix-base32-string (path-info-hash info)) (path-info-nar-size info) (basename (first (path-info-references info))))) |