removed unused variable from test

This commit is contained in:
Godfrey M 2024-10-23 17:33:23 -07:00
parent 15073a0d38
commit 6329f5b87e

View file

@ -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);
}
);