From 2a4050341f10d9d3e3db0c64ff94279f3fa4d37c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 1 Dec 2017 18:30:07 +0100 Subject: tests: Avoid double slash in URIs. * tests/publish.scm ("with cache"): Remove extra slash in NAR-URL. This would lead to a 'uri-error' exception on Guile 2.2.3. --- tests/publish.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/publish.scm') diff --git a/tests/publish.scm b/tests/publish.scm index f33898fd58..352caf5325 100644 --- a/tests/publish.scm +++ b/tests/publish.scm @@ -352,7 +352,7 @@ FileSize: ~a~%" (let* ((base "http://localhost:6797/") (part (store-path-hash-part %item)) (url (string-append base part ".narinfo")) - (nar-url (string-append base "/nar/gzip/" (basename %item))) + (nar-url (string-append base "nar/gzip/" (basename %item))) (cached (string-append cache "/gzip/" (basename %item) ".narinfo")) (nar (string-append cache "/gzip/" -- cgit v1.2.3