messing with the tests

This commit is contained in:
Godfrey M
2024-10-22 11:49:06 -07:00
parent ff113ef523
commit 1e31592c55
4 changed files with 30 additions and 20 deletions
@@ -33,8 +33,8 @@ class EmailNotificationsUponCheckinTest extends TestCase
$this->fireCheckInEvent($asset, $user);
Mail::assertSent(CheckinAssetMail::class, function($mail) use ($user, $asset) {
return $mail->hasTo($user->email) && $mail->event->checkoutable->id === $asset->id;
Mail::assertSent(CheckinAssetMail::class, function($mail) use ($user) {
return $mail->hasTo($user->email);
});
}