diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/functionals/UserApiTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/functionals/UserApiTest.php b/tests/functionals/UserApiTest.php index e1ce1878..e2c693dd 100644 --- a/tests/functionals/UserApiTest.php +++ b/tests/functionals/UserApiTest.php @@ -37,15 +37,15 @@ class UserApi extends PHPUnit_Framework_TestCase { $this->app = new JsonRPC\Client(API_URL); $this->app->authentication('jsonrpc', API_KEY); - $this->app->debug = true; + // $this->app->debug = true; $this->admin = new JsonRPC\Client(API_URL); $this->admin->authentication('admin', 'admin'); - $this->admin->debug = true; + // $this->admin->debug = true; $this->user = new JsonRPC\Client(API_URL); $this->user->authentication('user', 'password'); - $this->user->debug = true; + // $this->user->debug = true; } public function testCreateProject() |