From 59ed9d486c188259c5a2e7625187b62731da4e05 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 13 Jan 2022 20:39:11 +0000 Subject: [PATCH] test: add a response to the existing attendees --- tests/FakeEventRepository.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/FakeEventRepository.php b/tests/FakeEventRepository.php index e570334..e87fb0d 100644 --- a/tests/FakeEventRepository.php +++ b/tests/FakeEventRepository.php @@ -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'], ]); } }