diff options
author | ivan <ivan> | 2010-05-01 20:37:58 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-05-01 20:37:58 +0000 |
commit | a39c911f8c4def7e6f57b1c2349642bd58696742 (patch) | |
tree | 16132cf5c0738cfebfaded890ada1d20d2b2a55b /t/post-netssleay.t | |
parent | 90eca2090a47dd4755de4fa707597ff2c025ecaa (diff) |
- Updated servers used for testing in examples and tests
- Supress uninitialized value warnings from Net::SSLeay
Diffstat (limited to 't/post-netssleay.t')
-rw-r--r-- | t/post-netssleay.t | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/post-netssleay.t b/t/post-netssleay.t index 307bdb3..d5065b9 100644 --- a/t/post-netssleay.t +++ b/t/post-netssleay.t @@ -10,11 +10,11 @@ BEGIN { }; #200 - my($content, $response, %headers) = https_post( - { 'host' => 'secure.sisd.com', + { 'host' => 'www.google.com', 'port' => 443, - 'path' => '/freeside/index.html', + 'path' => '/accounts/ServiceLoginAuth', + 'args' => { 'posted' => 'data' }, }, 'net_https_any_test' => 1, ); @@ -27,9 +27,9 @@ ok( length($content), 'Received content' ); #404 my($content2, $response2, %headers2) = https_post( - { 'host' => 'secure.sisd.com', + { 'host' => 'www.fortify.net', 'port' => 443, - 'path' => '/freeside/notfound.html', + 'path' => '/notfound.html', }, 'net_https_any_test' => 1, ); |