From 9a93ad2e06efc2020224c50b15df63dd632303f8 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Tue, 27 Feb 2024 17:46:27 -0800 Subject: [PATCH] Remove unneeded factory state --- .../Webhooks/SlackNotificationsUponCheckinTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php b/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php index 8d8bf3a6e0..be6b9f8113 100644 --- a/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php +++ b/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php @@ -52,7 +52,7 @@ class SlackNotificationsUponCheckinTest extends TestCase $this->settings->enableSlackWebhook(); $this->fireCheckInEvent( - Accessory::factory()->appleBtKeyboard()->create(), + Accessory::factory()->create(), User::factory()->create(), ); @@ -64,7 +64,7 @@ class SlackNotificationsUponCheckinTest extends TestCase $this->settings->disableSlackWebhook(); $this->fireCheckInEvent( - Accessory::factory()->appleBtKeyboard()->create(), + Accessory::factory()->create(), User::factory()->create(), );