summaryrefslogtreecommitdiff
path: root/tests/integration/Base.php
diff options
context:
space:
mode:
authorImbasaur <yarrusg@gmail.com>2016-04-29 15:20:48 +0200
committerImbasaur <yarrusg@gmail.com>2016-04-29 15:20:48 +0200
commit7459bc1c40af72441ccdaff944ef2dc9465ba9bf (patch)
treefea088cdda93079aee9e719a1bbe8464358efbb0 /tests/integration/Base.php
parent99f275e5bb033cca33eee87b0e914645730f13d1 (diff)
parent81a25cbe6328eab7c4de0befc64186610ecc7f49 (diff)
Merge pull request #2 from fguillot/master
merge
Diffstat (limited to 'tests/integration/Base.php')
-rw-r--r--tests/integration/Base.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/integration/Base.php b/tests/integration/Base.php
index 983d0ed9..6f3ae076 100644
--- a/tests/integration/Base.php
+++ b/tests/integration/Base.php
@@ -35,15 +35,15 @@ abstract class Base extends PHPUnit_Framework_TestCase
{
$this->app = new JsonRPC\Client(API_URL);
$this->app->authentication('jsonrpc', API_KEY);
- // $this->app->debug = true;
+ $this->app->getHttpClient()->withDebug();
$this->admin = new JsonRPC\Client(API_URL);
$this->admin->authentication('admin', 'admin');
- // $this->admin->debug = true;
+ $this->admin->getHttpClient()->withDebug();
$this->user = new JsonRPC\Client(API_URL);
$this->user->authentication('user', 'password');
- // $this->user->debug = true;
+ $this->user->getHttpClient()->withDebug();
}
protected function getProjectId()