diff options
Diffstat (limited to 't/get-netssleay.t')
-rw-r--r-- | t/get-netssleay.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/get-netssleay.t b/t/get-netssleay.t index 22a7e23..9ca788f 100644 --- a/t/get-netssleay.t +++ b/t/get-netssleay.t @@ -12,9 +12,9 @@ BEGIN { #200 my($content, $response, %headers) = https_get( - { 'host' => 'secure.sisd.com', + { 'host' => 'www.fortify.net', 'port' => 443, - 'path' => '/freeside/index.html', + 'path' => '/sslcheck.html', }, 'net_https_any_test' => 1, ); @@ -27,9 +27,9 @@ ok( length($content), 'Received content' ); #404 my($content2, $response2, %headers2) = https_get( - { 'host' => 'secure.sisd.com', + { 'host' => 'www.fortify.net', 'port' => 443, - 'path' => '/freeside/notfound.html', + 'path' => '/notfound.html', }, 'net_https_any_test' => 1, ); |