From 6329f5b87e9dd2ff852073aa290e2930b2f78c10 Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Wed, 23 Oct 2024 17:33:23 -0700 Subject: [PATCH] removed unused variable from test --- .../Notifications/Email/EmailNotificationsUponCheckinTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Notifications/Email/EmailNotificationsUponCheckinTest.php b/tests/Feature/Notifications/Email/EmailNotificationsUponCheckinTest.php index a472c73c5..38bda4033 100644 --- a/tests/Feature/Notifications/Email/EmailNotificationsUponCheckinTest.php +++ b/tests/Feature/Notifications/Email/EmailNotificationsUponCheckinTest.php @@ -50,7 +50,7 @@ class EmailNotificationsUponCheckinTest extends TestCase $this->fireCheckInEvent($asset, $user); - Mail::assertNotSent(CheckinAssetMail::class, function($mail) use ($user, $asset) { + Mail::assertNotSent(CheckinAssetMail::class, function($mail) use ($user) { return $mail->hasTo($user->email); } );