Remove unneeded factory state

This commit is contained in:
Marcus Moore 2024-02-27 17:46:27 -08:00
parent bd4d3aa52b
commit 9a93ad2e06
No known key found for this signature in database

View file

@ -52,7 +52,7 @@ class SlackNotificationsUponCheckinTest extends TestCase
$this->settings->enableSlackWebhook(); $this->settings->enableSlackWebhook();
$this->fireCheckInEvent( $this->fireCheckInEvent(
Accessory::factory()->appleBtKeyboard()->create(), Accessory::factory()->create(),
User::factory()->create(), User::factory()->create(),
); );
@ -64,7 +64,7 @@ class SlackNotificationsUponCheckinTest extends TestCase
$this->settings->disableSlackWebhook(); $this->settings->disableSlackWebhook();
$this->fireCheckInEvent( $this->fireCheckInEvent(
Accessory::factory()->appleBtKeyboard()->create(), Accessory::factory()->create(),
User::factory()->create(), User::factory()->create(),
); );