From 3a1cb1ff8dc9ca780e22772e7ca8c0f10f9ca816 Mon Sep 17 00:00:00 2001 From: Forms Dev Date: Mon, 20 Nov 2023 17:03:41 +0530 Subject: [PATCH] fix testcase --- tests/Feature/Forms/FormPasswordTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Feature/Forms/FormPasswordTest.php b/tests/Feature/Forms/FormPasswordTest.php index 15274a2db..03d265096 100644 --- a/tests/Feature/Forms/FormPasswordTest.php +++ b/tests/Feature/Forms/FormPasswordTest.php @@ -54,7 +54,7 @@ ->assertStatus(403) ->assertJson([ 'status' => 'Unauthorized', - 'message' => 'Form is password protected.' + 'message' => 'Form is protected.' ]); }); @@ -66,7 +66,7 @@ ->assertStatus(403) ->assertJson([ 'status' => 'Unauthorized', - 'message' => 'Form is password protected.' + 'message' => 'Form is protected.' ]); });