diff --git a/_test/tests/inc/httpclient_http.test.php b/_test/tests/inc/httpclient_http.test.php index 94b8e1bc10c86e4762ed09ac678f5306168bbf5b..f496507d0deca08e9a225b8ded458883e58f77a2 100644 --- a/_test/tests/inc/httpclient_http.test.php +++ b/_test/tests/inc/httpclient_http.test.php @@ -3,7 +3,7 @@ require_once (__DIR__ . '/httpclient_mock.php'); class httpclient_http_test extends DokuWikiTest { - protected $server = 'http://httpbin.org'; + protected $server = 'http://eu.httpbin.org'; /** diff --git a/_test/tests/inc/httpclient_http_proxy.test.php b/_test/tests/inc/httpclient_http_proxy.test.php index dae801dbd751900de10dcfe44896e49f1fa2b354..4b95b5d6e3c9e79e90901c7d7691257aa4905587 100644 --- a/_test/tests/inc/httpclient_http_proxy.test.php +++ b/_test/tests/inc/httpclient_http_proxy.test.php @@ -3,7 +3,7 @@ require_once (__DIR__ . '/httpclient_mock.php'); class httpclient_http_proxy_test extends DokuWikiTest { - protected $url = 'http://httpbin.org/user-agent'; + protected $url = 'http://eu.httpbin.org/user-agent'; /** * @group internet @@ -18,4 +18,4 @@ class httpclient_http_proxy_test extends DokuWikiTest { $this->assertFalse($data === false, 'HTTP response: '.$http->error.' ['.$this->url.']'); $this->assertTrue(strpos($data,'DokuWiki') !== false, 'response content'); } -} \ No newline at end of file +} diff --git a/_test/tests/inc/httpclient_https.test.php b/_test/tests/inc/httpclient_https.test.php index 955d467ecd69e1af2c5d98f3886e6cd1ce9baa4d..0163501b264086dcf1c0ea67b0553333c64c1acd 100644 --- a/_test/tests/inc/httpclient_https.test.php +++ b/_test/tests/inc/httpclient_https.test.php @@ -2,7 +2,7 @@ require_once dirname(__FILE__).'/httpclient_http.test.php'; class httpclient_https_test extends httpclient_http_test { - protected $server = 'https://httpbin.org/'; + protected $server = 'https://eu.httpbin.org/'; public function setUp(){ // skip tests when this PHP has no SSL support diff --git a/_test/tests/inc/httpclient_https_proxy.test.php b/_test/tests/inc/httpclient_https_proxy.test.php index cf5b9a8b933f4f5db18a1759c62122d3c8c2c184..2e9381d07a0f27b646ca7c71d80e751e8fad5d43 100644 --- a/_test/tests/inc/httpclient_https_proxy.test.php +++ b/_test/tests/inc/httpclient_https_proxy.test.php @@ -2,7 +2,7 @@ require_once dirname(__FILE__).'/httpclient_http_proxy.test.php'; class httpclient_https_proxy_test extends httpclient_http_proxy_test { - protected $url = 'https://httpbin.org/user-agent'; + protected $url = 'https://eu.httpbin.org/user-agent'; public function setUp(){ // skip tests when this PHP has no SSL support