Skip to content

Commit cf9d987

Browse files
Copilotoalders
andcommitted
Replace neverssl.com with example.com in t/live.t to fix #84
Co-authored-by: oalders <[email protected]>
1 parent f08b0dc commit cf9d987

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

t/live.t

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ BEGIN {
66
eval {
77
require IO::Socket::INET;
88
my $s = IO::Socket::INET->new(
9-
PeerHost => "www.neverssl.com:80",
9+
PeerHost => "example.com:80",
1010
Timeout => 5,
1111
);
1212
die "Can't connect: $@" unless $s;
1313
};
1414
if ($@) {
15-
print "1..0 # SKIP Can't connect to www.neverssl.com\n";
15+
print "1..0 # SKIP Can't connect to example.com\n";
1616
print $@;
1717
exit;
1818
}
@@ -26,7 +26,7 @@ plan tests => 6;
2626
use Net::HTTP;
2727

2828
my $s = Net::HTTP->new(
29-
Host => "www.neverssl.com",
29+
Host => "example.com",
3030
KeepAlive => 1,
3131
Timeout => 15,
3232
PeerHTTPVersion => "1.1",

0 commit comments

Comments
 (0)