summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-07-26 17:29:53 -0700
committerIvan Kohler <ivan@freeside.biz>2014-07-26 17:29:53 -0700
commit417d3afd87b9b2b0bbcc747b647875d67778a85f (patch)
treec3a3d584e63db15ca46efbeff1b8a56149d242b9
parent66d4880fb7e849d058cad0d1c5f9e57e18278fd9 (diff)
fix 404 test
-rw-r--r--t/post-cryptssleay.t3
-rw-r--r--t/post-netssleay.t3
2 files changed, 4 insertions, 2 deletions
diff --git a/t/post-cryptssleay.t b/t/post-cryptssleay.t
index 7f99b0a..f77fa32 100644
--- a/t/post-cryptssleay.t
+++ b/t/post-cryptssleay.t
@@ -33,9 +33,10 @@ ok( length($content), 'Received content' );
#404
my($content2, $response2, %headers2) = https_post(
- { 'host' => 'www.fortify.net',
+ { 'host' => 'www.google.com',
'port' => 443,
'path' => '/notfound.html',
+ 'args' => { 'length' => 'required' },
},
'net_https_any_test' => 1,
);
diff --git a/t/post-netssleay.t b/t/post-netssleay.t
index d5065b9..9f67384 100644
--- a/t/post-netssleay.t
+++ b/t/post-netssleay.t
@@ -27,9 +27,10 @@ ok( length($content), 'Received content' );
#404
my($content2, $response2, %headers2) = https_post(
- { 'host' => 'www.fortify.net',
+ { 'host' => 'www.google.com',
'port' => 443,
'path' => '/notfound.html',
+ 'args' => { 'length' => 'required' },
},
'net_https_any_test' => 1,
);