From 816edc3398a3f274d5c607dc3f81c93121f480de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=CC=88nther=20Debrauwer?= Date: Sun, 13 Feb 2022 14:01:16 +0100 Subject: [PATCH] Small test fix --- tests/Feature/SendVerificationCodeTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/SendVerificationCodeTest.php b/tests/Feature/SendVerificationCodeTest.php index 4e02d0b..497e109 100644 --- a/tests/Feature/SendVerificationCodeTest.php +++ b/tests/Feature/SendVerificationCodeTest.php @@ -100,7 +100,7 @@ public function it_deletes_old_code_of_verifiable_on_send() public function it_throws_exception_if_notification_does_not_extend_the_verification_notification_class() { $this->expectException(RuntimeException::class); - $this->expectExceptionMessage('The notification class must implement the `\NextApps\VerificationCode\Notifications\VerificationCodeCreatedInterface` interface'); + $this->expectExceptionMessage('The notification class must implement the `NextApps\VerificationCode\Notifications\VerificationCodeCreatedInterface` interface'); config()->set('verification-code.notification', NotificationDoesNotImplementInterface::class);