Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorsgiehl <stefan@piwik.org>2017-09-10 17:19:38 +0300
committerStefan Giehl <stefan@piwik.org>2017-09-10 17:53:26 +0300
commit825dea9bc03a2f71c3c506cae582297d9e6ce230 (patch)
treeb4c7c72e3260d58fc1ff2f998a9c8b2a51341e85 /tests
parent6910c78df9e81ade5905bed2dc1cdfa79a5c88cd (diff)
Use Google for checking host with valid SSL
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Integration/HttpTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Integration/HttpTest.php b/tests/PHPUnit/Integration/HttpTest.php
index 371ad82459..29a0d71161 100644
--- a/tests/PHPUnit/Integration/HttpTest.php
+++ b/tests/PHPUnit/Integration/HttpTest.php
@@ -289,7 +289,7 @@ class HttpTest extends \PHPUnit_Framework_TestCase
public function testSocketHttpsWorksWithValidCertificate()
{
- $result = Http::sendHttpRequestBy('socket', 'https://divezone.net/', 10);
+ $result = Http::sendHttpRequestBy('socket', 'https://www.google.com/', 10);
$this->assertNotEmpty($result);
}
}