Skip to content

Commit

Permalink
Fixed test due to external change
Browse files Browse the repository at this point in the history
  • Loading branch information
jamielsharief committed Oct 3, 2019
1 parent 46bb0f6 commit 0ce0576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Network/SocketTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public function testSocketSSL()
$this->assertTrue($socket->connect());
//$this->assertTrue($socket->enableCrypto('sslv3'));
$this->assertEquals(65, $socket->write("GET https://about.google/intl/en/ HTTP/1.1\r\nConnection: close\r\n\r\n"));
$this->assertStringContainsString('<title>About | Google</title>', $socket->read(2500));
$this->assertStringContainsString('<title>About - Google</title>', $socket->read(2500));
}

public function testEnableCrypto()
Expand Down

0 comments on commit 0ce0576

Please sign in to comment.