summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>2020-07-18 19:41:51 +0200
committergregor herrmann <gregoa@debian.org>2020-07-18 19:41:51 +0200
commit9ddf1975633e7eb6156788ab27ef3b57d7ceb4d3 (patch)
tree4d52a7b987dedeaf6ad516caccc8e1a33b542e80
parente122bc630696e180e64f228b4a8d1b93078ad3a4 (diff)
Fix https testarchive/debian/6.09-1
Forwarded: not-needed Reviewed-by: gregor herrmann <gregoa@debian.org> Last-Update: 2016-04-29 fix https test after patch 746579-fix-peer-certificate-verification.patch kinda breaks it. Gbp-Pq: Name fix-https-test
-rw-r--r--t/https_proxy.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/https_proxy.t b/t/https_proxy.t
index 5196960..190cfc8 100644
--- a/t/https_proxy.t
+++ b/t/https_proxy.t
@@ -66,7 +66,10 @@ my %ua;
$ua{noproxy} = LWP::UserAgent->new(
keep_alive => 10, # size of connection cache
# server does not know the expected name and returns generic certificate
- ssl_opts => { verify_hostname => 0 }
+ ssl_opts => {
+ verify_hostname => 0,
+ SSL_ca_file => $cafile,
+ }
);
$ua{proxy} = LWP::UserAgent->new(