about summary refs log tree commit homepage
path: root/t/nntpd-tls.t
diff options
context:
space:
mode:
Diffstat (limited to 't/nntpd-tls.t')
-rw-r--r--t/nntpd-tls.t7
1 files changed, 1 insertions, 6 deletions
diff --git a/t/nntpd-tls.t b/t/nntpd-tls.t
index 84d6e3c0..e961965b 100644
--- a/t/nntpd-tls.t
+++ b/t/nntpd-tls.t
@@ -117,12 +117,7 @@ for my $args (
         my $expect = { $group => [qw(1 1 n)] };
 
         # start negotiating a slow TLS connection
-        my $slow = IO::Socket::INET->new(
-                Proto => 'tcp',
-                PeerAddr => $nntps_addr,
-                Type => SOCK_STREAM,
-                Blocking => 0,
-        );
+        my $slow = tcp_connect($nntps, Blocking => 0);
         $slow = IO::Socket::SSL->start_SSL($slow, SSL_startHandshake => 0, %o);
         my $slow_done = $slow->connect_SSL;
         diag('W: connect_SSL early OK, slow client test invalid') if $slow_done;