diff options
Diffstat (limited to 't/get-cryptssleay.t')
-rw-r--r-- | t/get-cryptssleay.t | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/t/get-cryptssleay.t b/t/get-cryptssleay.t index 43ac5f4..53f1cdb 100644 --- a/t/get-cryptssleay.t +++ b/t/get-cryptssleay.t @@ -6,17 +6,17 @@ use Test::More; BEGIN { plan( tests=>4 ); - $Business::OnlinePayment::HTTPS::skip_NetSSLeay=1; - $Business::OnlinePayment::HTTPS::skip_NetSSLeay=1; + $Net::HTTPS::Any::skip_NetSSLeay=1; + $Net::HTTPS::Any::skip_NetSSLeay=1; use_ok 'Net::HTTPS::Any', 'https_get'; }; #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, ); @@ -29,9 +29,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, ); |