# HG changeset patch # User Sergey Kandaurov # Date 1537191637 -10800 # Node ID 09c2291b2bab92bc0c7e1230d0a80f853aad45b7 # Parent 92ba8ef8d6b27d9fb1120f157f5ede43dbcf5ec1 Tests: relaxed test for no response on SSL renegotiation attempt. diff --git a/ssl_sni_reneg.t b/ssl_sni_reneg.t --- a/ssl_sni_reneg.t +++ b/ssl_sni_reneg.t @@ -104,7 +104,7 @@ ok(Net::SSLeay::set_tlsext_host_name($ss Net::SSLeay::write($ssl, 'Host: localhost' . CRLF . CRLF); -is(Net::SSLeay::read($ssl), undef, 'response'); +ok(!Net::SSLeay::read($ssl), 'response'); }