Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenwadejr committed Mar 15, 2017
1 parent 809b14c commit 207f4b5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/UnassignConversationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ public function testUnassign()

private function getConversation()
{
$conversation = new Conversation;
$conversation = new Conversation((object)[
'threads' => [],
'createdBy' => 12345
]);
$conversation->setMailbox(new MailboxRef);
$conversation->setCreatedBy(new PersonRef);

return $conversation;
}
}
}

0 comments on commit 207f4b5

Please sign in to comment.