We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f08b0dc commit cf9d987Copy full SHA for cf9d987
t/live.t
@@ -6,13 +6,13 @@ BEGIN {
6
eval {
7
require IO::Socket::INET;
8
my $s = IO::Socket::INET->new(
9
- PeerHost => "www.neverssl.com:80",
+ PeerHost => "example.com:80",
10
Timeout => 5,
11
);
12
die "Can't connect: $@" unless $s;
13
};
14
if ($@) {
15
- print "1..0 # SKIP Can't connect to www.neverssl.com\n";
+ print "1..0 # SKIP Can't connect to example.com\n";
16
print $@;
17
exit;
18
}
@@ -26,7 +26,7 @@ plan tests => 6;
26
use Net::HTTP;
27
28
my $s = Net::HTTP->new(
29
- Host => "www.neverssl.com",
+ Host => "example.com",
30
KeepAlive => 1,
31
Timeout => 15,
32
PeerHTTPVersion => "1.1",
0 commit comments