test: add a response to the existing attendees

This commit is contained in:
Oliver Davies 2022-01-13 20:39:11 +00:00
parent 7b5da6e46a
commit 59ed9d486c

View file

@ -11,9 +11,9 @@ final class FakeEventRepository implements EventRepository
{
public function getConfirmedAttendees(): Collection {
return Collection::make([
['name' => 'matthew s.'],
['name' => 'Michael P.'],
['name' => 'Kathryn "Kat" R.'],
['name' => 'matthew s.', 'response' => 'yes'],
['name' => 'Michael P.', 'response' => 'yes'],
['name' => 'Kathryn "Kat" R.', 'response' => 'yes'],
]);
}
}