Code cleaup

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Haertl
2017-02-28 14:52:15 +01:00
committed by Julius Härtl
parent 2b05227f4b
commit 1e9c86e158
7 changed files with 58 additions and 39 deletions

View File

@@ -20,8 +20,8 @@ class BoardTest extends \PHPUnit_Framework_TestCase {
'title' => "My Board",
'owner' => "admin",
'color' => "000000",
'labels' => null,
'acl' => null,
'labels' => array(),
'acl' => array(),
'archived' => false
], $board->jsonSerialize());
}
@@ -35,7 +35,7 @@ class BoardTest extends \PHPUnit_Framework_TestCase {
'owner' => "admin",
'color' => "000000",
'labels' => array("foo", "bar"),
'acl' => null,
'acl' => array(),
'archived' => false
], $board->jsonSerialize());
}
@@ -55,8 +55,8 @@ class BoardTest extends \PHPUnit_Framework_TestCase {
'title' => "My Board",
'owner' => "admin",
'color' => "000000",
'labels' => null,
'acl' => null,
'labels' => array(),
'acl' => array(),
'archived' => false,
'shared' => 1,
], $board->jsonSerialize());