summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-09-05 12:03:20 -0400
committerFrederic Guillot <fred@kanboard.net>2015-09-05 12:03:20 -0400
commit512840fe1dca3ddc686360107ae1369e82696502 (patch)
tree5e983be9f84be97e50d72bbc0a946d52f251e2f8 /tests
parentbac18d80f8ff8fce9d167671273e80a492f4c3c5 (diff)
Improve pull-request about swimlane description
Diffstat (limited to 'tests')
-rw-r--r--tests/functionals/UserApiTest.php6
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()