From 93494ac55447b062b80918d84a80e38c5dbd2c3d Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Mon, 4 Nov 2024 15:17:58 -0800 Subject: [PATCH] put dataprovider back in for tests --- .../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 1de852597a..adaede07ec 100644 --- a/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php +++ b/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php @@ -31,8 +31,8 @@ class SlackNotificationsUponCheckinTest extends TestCase public static function assetCheckInTargets(): array { return [ -// 'Asset checked out to user' => [fn() => User::factory()->create()], -// 'Asset checked out to asset' => [fn() => Asset::factory()->laptopMbp()->create()], + 'Asset checked out to user' => [fn() => User::factory()->create()], + 'Asset checked out to asset' => [fn() => Asset::factory()->laptopMbp()->create()], 'Asset checked out to location' => [fn() => Location::factory()->create()], ]; }