tests: cpan: Fix mock urls.
Followup to 7a62263ee5
.
* tests/cpan.scm (cpan->guix-package): Use "https" in mock urls.
This commit is contained in:
parent
7b44cae50a
commit
83ab1a812f
|
@ -66,9 +66,9 @@
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(display
|
(display
|
||||||
(match url
|
(match url
|
||||||
("http://api.metacpan.org/release/Foo-Bar"
|
("https://api.metacpan.org/release/Foo-Bar"
|
||||||
test-json)
|
test-json)
|
||||||
("http://api.metacpan.org/module/Test::Script"
|
("https://api.metacpan.org/module/Test::Script"
|
||||||
"{ \"distribution\" : \"Test-Script\" }")
|
"{ \"distribution\" : \"Test-Script\" }")
|
||||||
("http://example.com/Foo-Bar-0.1.tar.gz"
|
("http://example.com/Foo-Bar-0.1.tar.gz"
|
||||||
test-source)
|
test-source)
|
||||||
|
|
Loading…
Reference in New Issue