We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd7e5e0 commit d5ceb3fCopy full SHA for d5ceb3f
tests/FunctionalTest.php
@@ -61,8 +61,8 @@ public function testPlainGoogleDoesNotAcceptConnectMethod()
61
62
public function testSecureGoogleDoesNotAcceptConnectMethod()
63
{
64
- if (!function_exists('stream_socket_enable_crypto')) {
65
- $this->markTestSkipped('TLS not supported on really old platforms (HHVM < 3.8)');
+ if (defined('HHVM_VERSION')) {
+ $this->markTestSkipped('TLS not supported on legacy HHVM');
66
}
67
68
$secure = new SecureConnector($this->dnsConnector, $this->loop);
0 commit comments