From d4cdb622ad0869b83e2f29259b8f590da7f5a9d0 Mon Sep 17 00:00:00 2001 From: Rawley Date: Thu, 23 May 2024 10:25:10 -0600 Subject: [PATCH] add previously unused UA timeout --- t/HTTP-Server-PSGI/listen.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/HTTP-Server-PSGI/listen.t b/t/HTTP-Server-PSGI/listen.t index 41383bff9..df6e6a281 100644 --- a/t/HTTP-Server-PSGI/listen.t +++ b/t/HTTP-Server-PSGI/listen.t @@ -29,6 +29,7 @@ test_tcp( client => sub { my $port = shift; my $ua = LWP::UserAgent->new; + $ua->timeout($ua_timeout); my $res = $ua->get("http://127.0.0.1:$port/"); ok $res->is_success; is $res->code, 200;