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:
Diffstat (limited to 'tests/PHPUnit/Integration/HttpTest.php')
-rw-r--r--tests/PHPUnit/Integration/HttpTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PHPUnit/Integration/HttpTest.php b/tests/PHPUnit/Integration/HttpTest.php
index 417a98599d..272c36c0e1 100644
--- a/tests/PHPUnit/Integration/HttpTest.php
+++ b/tests/PHPUnit/Integration/HttpTest.php
@@ -235,7 +235,7 @@ class HttpTest extends \PHPUnit_Framework_TestCase
*/
public function testCurlHttpsFailsWithInvalidCertificate()
{
- Http::sendHttpRequestBy('curl', 'https://divezone.net', 10);
+ Http::sendHttpRequestBy('curl', 'https://www.virtual-drums.com', 10);
}
/**
@@ -244,7 +244,7 @@ class HttpTest extends \PHPUnit_Framework_TestCase
*/
public function testFopenHttpsFailsWithInvalidCertificate()
{
- Http::sendHttpRequestBy('fopen', 'https://divezone.net', 10);
+ Http::sendHttpRequestBy('fopen', 'https://www.virtual-drums.com', 10);
}
/**