Fix deleteAcl

Signed-off-by: raul <raul@nextcloud.com>
This commit is contained in:
raul
2022-09-22 08:46:35 +02:00
committed by Raul Ferreira Fuentes
parent af8e61ece6
commit 24a4260e55
3 changed files with 19 additions and 8 deletions
+1 -1
View File
@@ -427,6 +427,6 @@ class BoardServiceTest extends TestCase {
->method('delete')
->with($acl)
->willReturn($acl);
$this->assertTrue($this->service->deleteAcl(123));
$this->assertEquals($acl, $this->service->deleteAcl(123));
}
}