Skip to content
Snippets Groups Projects
Commit a20ce704 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

changed proxy in test case

parent 04924b7a
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,9 @@ class httpclient_http_proxy_test extends DokuWikiTest {
*/
function test_simpleget(){
$http = new HTTPClient();
$http->proxy_host = 'localhost'; //FIXME we need a public server
$http->proxy_port = 3128;
// proxy provided by Andrwe Lord Weber <dokuwiki@andrwe.org>
$http->proxy_host = 'proxy.andrwe.org';
$http->proxy_port = 8080;
$data = $http->get($this->url);
$this->assertFalse($data === false, 'HTTP response');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment