From 15b8140bffc5dbd113ebaac26bcf74f0da1a448a Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Tue, 27 Feb 2024 17:48:17 -0800 Subject: [PATCH] Fix test helper --- .../Webhooks/SlackNotificationsUponCheckinTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php b/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php index be6b9f8113..c03d9a30aa 100644 --- a/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php +++ b/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php @@ -168,6 +168,6 @@ class SlackNotificationsUponCheckinTest extends TestCase private function assertNoSlackNotificationSent(string $notificationClass) { - Notification::assertNotSentTo(new AnonymousNotifiable, CheckinAccessoryNotification::class); + Notification::assertNotSentTo(new AnonymousNotifiable, $notificationClass); } }