diff --git a/tests/Notifications/NotificationMailChannelTest.php b/tests/Notifications/NotificationMailChannelTest.php index 989ef11fd9d3..4249dac6a675 100644 --- a/tests/Notifications/NotificationMailChannelTest.php +++ b/tests/Notifications/NotificationMailChannelTest.php @@ -22,7 +22,7 @@ public function testMailIsSentByChannel() $mailer = Mockery::mock(Illuminate\Contracts\Mail\Mailer::class) ); - $view = ['notifications::email.html', 'notifications::email.text']; + $view = ['notifications::email', 'notifications::email-plain']; $mailer->shouldReceive('send')->with($view, $data, Mockery::type('Closure'));