diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-10-20 21:28:32 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-10-20 21:28:32 +0200 |
commit | 712c66312b26ec08723b47583b7be846451ed712 (patch) | |
tree | f6f3b0c2f749050679f01fb241984fad977cbf05 | |
parent | d9529222b05d3366179c8a5bbd6d717664b98de0 (diff) | |
download | rpg-712c66312b26ec08723b47583b7be846451ed712.tar.gz rpg-712c66312b26ec08723b47583b7be846451ed712.tar.bz2 |
more verbosity in test case
-rw-r--r-- | _test/tests/inc/httpclient_http_proxy.test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/tests/inc/httpclient_http_proxy.test.php b/_test/tests/inc/httpclient_http_proxy.test.php index faa7a4280..c53e3579c 100644 --- a/_test/tests/inc/httpclient_http_proxy.test.php +++ b/_test/tests/inc/httpclient_http_proxy.test.php @@ -13,7 +13,7 @@ class httpclient_http_proxy_test extends DokuWikiTest { $http->proxy_port = 8080; $data = $http->get($this->url); - $this->assertFalse($data === false, 'HTTP response'); + $this->assertFalse($data === false, 'HTTP response '.$http->error); $this->assertTrue(strpos($data,'DokuWiki') !== false, 'response content'); } |