Fix tests for new setting

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2018-12-05 13:22:17 +01:00
parent dd104466d6
commit 4279e09cc2
2 changed files with 10 additions and 2 deletions

View File

@@ -83,6 +83,7 @@ class CardTest extends TestCase {
'assignedUsers' => null,
'deletedAt' => 0,
'commentsUnread' => 0,
'lastEditor' => null,
], $card->jsonSerialize());
}
public function testJsonSerializeLabels() {
@@ -107,6 +108,7 @@ class CardTest extends TestCase {
'assignedUsers' => null,
'deletedAt' => 0,
'commentsUnread' => 0,
'lastEditor' => null,
], $card->jsonSerialize());
}
@@ -141,6 +143,7 @@ class CardTest extends TestCase {
'assignedUsers' => ['user1'],
'deletedAt' => 0,
'commentsUnread' => 0,
'lastEditor' => null,
], $card->jsonSerialize());
}