commit b52ccc62a807d64beb6f7b86cfb0c6f75674d8d2
Author: Sergey Poznyakoff <gray@gnu.org>
Date:   Sun Aug 4 18:10:12 2024 +0300
Forwarded: not-needed

    Fix HTTPS tests.
    
    * tests/poundharness.pl (PoundScript::new): Disable SSL verification
    explicitly: default changed in HTTP::Tiny 0.088 from 0 to 1.

diff --git a/tests/poundharness.pl b/tests/poundharness.pl
index eb31e5c..0d8541a 100644
--- a/tests/poundharness.pl
+++ b/tests/poundharness.pl
@@ -381,7 +381,7 @@ sub new {
 	    or croak "can't create transcript file $xscript: $!";
     }
     $self->{server} = 0;
-    $self->{http} = HTTP::Tiny->new(max_redirect => 0);
+    $self->{http} = HTTP::Tiny->new(max_redirect => 0, verify_SSL => 0);
     return $self;
 }
 
