Stop testing against SSL ciphers that emit warnings.

Testing that SSLv3 still works is causing test failures.
This commit is contained in:
mark_story 2016-06-27 21:47:37 -04:00
parent 92a50d05dc
commit f28c21c7a7

View file

@ -318,11 +318,6 @@ class CakeSocketTest extends CakeTestCase {
* @return void * @return void
*/ */
public function testEnableCrypto() { public function testEnableCrypto() {
// testing on ssl server
$this->_connectSocketToSslTls();
$this->assertTrue($this->Socket->enableCrypto('sslv3', 'client'));
$this->Socket->disconnect();
// testing on tls server // testing on tls server
$this->_connectSocketToSslTls(); $this->_connectSocketToSslTls();
$this->assertTrue($this->Socket->enableCrypto('tls', 'client')); $this->assertTrue($this->Socket->enableCrypto('tls', 'client'));