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
diff options
context:
space:
mode:
authorMatthieu Aubry <mattab@users.noreply.github.com>2017-09-20 14:02:48 +0300
committerGitHub <noreply@github.com>2017-09-20 14:02:48 +0300
commite4750236c6668b9126271cc6eef02256a64ec9f0 (patch)
tree2020b521ec738402a0c522c081a10f4ef56ddbdb /tests/PHPUnit
parent3689b2ae2a262d2d86df5ea7c1d0e9ceda287ea7 (diff)
Use Piwik.org in our HTTP Socket integration test (#12074)
* Use Piwik.org in our HTTP Socket integration test * use exact "piwik.org" in HTTP socket integration test * use "ssl://" if necessary for HTTP socket * divert from spec to please HTTP socket test
Diffstat (limited to 'tests/PHPUnit')
-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 29a0d71161..db4e370862 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://www.google.com/', 10);
+ $result = Http::sendHttpRequestBy('socket', 'https://piwik.org/', 10);
$this->assertNotEmpty($result);
}
}