Fix ACL and archived REST endpoints

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2019-06-30 13:27:22 +02:00
parent cc4439517d
commit 1811dc73b7
7 changed files with 20 additions and 12 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ class BoardTest extends TestCase {
$acl->setId(1);
$board = $this->createBoard();
$board->setAcl(array($acl));
$result = $board->getAcl()[1];
$result = $board->getAcl()[0];
$this->assertEquals($acl, $result);
}
public function testSetShared() {