Fix CardTest

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2018-06-19 18:00:06 +02:00
parent 06ea03689b
commit 1972edc38d
+3
View File
@@ -78,6 +78,7 @@ class CardTest extends \PHPUnit_Framework_TestCase {
'overdue' => 0,
'archived' => false,
'attachments' => null,
'attachmentCount' => null,
'assignedUsers' => null,
], $card->jsonSerialize());
}
@@ -99,6 +100,7 @@ class CardTest extends \PHPUnit_Framework_TestCase {
'overdue' => 0,
'archived' => false,
'attachments' => null,
'attachmentCount' => null,
'assignedUsers' => null,
], $card->jsonSerialize());
}
@@ -130,6 +132,7 @@ class CardTest extends \PHPUnit_Framework_TestCase {
'overdue' => 0,
'archived' => false,
'attachments' => null,
'attachmentCount' => null,
'assignedUsers' => ['user1'],
], $card->jsonSerialize());
}