Fix tests

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-10-12 16:17:08 +02:00
parent 77c59ae4eb
commit c28b08da16
5 changed files with 41 additions and 8 deletions

View File

@@ -31,6 +31,7 @@ class BoardTest extends TestCase {
'acl' => [],
'archived' => false,
'users' => ['user1', 'user2'],
'settings' => [],
], $board->jsonSerialize());
}
@@ -50,6 +51,7 @@ class BoardTest extends TestCase {
'acl' => [],
'archived' => false,
'users' => [],
'settings' => [],
], $board->jsonSerialize());
}
public function testSetAcl() {
@@ -77,6 +79,7 @@ class BoardTest extends TestCase {
'archived' => false,
'shared' => 1,
'users' => [],
'settings' => [],
], $board->jsonSerialize());
}
}