[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: tests: cpan: Fix mock urls.
From: |
Eric Bavier |
Subject: |
01/01: tests: cpan: Fix mock urls. |
Date: |
Wed, 31 Aug 2016 15:19:14 +0000 (UTC) |
bavier pushed a commit to branch master
in repository guix.
commit 83ab1a812fc7903abdaabeca2e07bb03f8d25827
Author: Eric Bavier <address@hidden>
Date: Wed Aug 31 09:56:00 2016 -0500
tests: cpan: Fix mock urls.
Followup to 7a62263ee5.
* tests/cpan.scm (cpan->guix-package): Use "https" in mock urls.
---
tests/cpan.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/cpan.scm b/tests/cpan.scm
index 898081b..80ff044 100644
--- a/tests/cpan.scm
+++ b/tests/cpan.scm
@@ -66,9 +66,9 @@
(lambda ()
(display
(match url
- ("http://api.metacpan.org/release/Foo-Bar"
+ ("https://api.metacpan.org/release/Foo-Bar"
test-json)
- ("http://api.metacpan.org/module/Test::Script"
+ ("https://api.metacpan.org/module/Test::Script"
"{ \"distribution\" : \"Test-Script\" }")
("http://example.com/Foo-Bar-0.1.tar.gz"
test-source)