From 9d4b7cf487d77d4615b407029ffefaee6f02792e Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: Thu, 14 Dec 2023 14:18:38 -0500 Subject: [PATCH] Issue 134 - fix inconsistent case for password field fixes: https://github.com/freeipa/freeipa-webui/issues/134 Signed-off-by: MArk Reynolds --- src/components/modals/AddUser.tsx | 2 +- tests/features/active_users_handling.feature | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/modals/AddUser.tsx b/src/components/modals/AddUser.tsx index 1fd390a2..bd2f44d4 100644 --- a/src/components/modals/AddUser.tsx +++ b/src/components/modals/AddUser.tsx @@ -484,7 +484,7 @@ const AddUser = (props: PropsToAddUser) => { }, { id: "new-password", - name: "New Password", + name: "New password", pfComponent: ( " * I type in the field "First name" text "" * I type in the field "Last name" text "" - * I type in the field "New Password" text "" + * I type in the field "New password" text "" * I type in the field "Verify password" text "" * in the modal dialog I click on "Add" button Then I should see "" entry in the data table @@ -27,14 +27,14 @@ Feature: User manipulation * I type in the field "User login" text "chainuser1" * I type in the field "First name" text "Chain" * I type in the field "Last name" text "User1" - * I type in the field "New Password" text "CorrectHorseBatteryStaple" + * I type in the field "New password" text "CorrectHorseBatteryStaple" * I type in the field "Verify password" text "CorrectHorseBatteryStaple" * in the modal dialog I click on "Add and add another" button When I type in the field "User login" text "chainuser2" * I type in the field "First name" text "Chain" * I type in the field "Last name" text "User2" - * I type in the field "New Password" text "IncorrectHorseBatteryStaple" + * I type in the field "New password" text "IncorrectHorseBatteryStaple" * I type in the field "Verify password" text "IncorrectHorseBatteryStaple" * in the modal dialog I click on "Add" button Then I should see "chainuser1" entry in the data table @@ -175,7 +175,7 @@ Scenario: Re-enable multiple users at once * I type in the field "User login" text "cancelleduser" * I type in the field "First name" text "Cancelled" * I type in the field "Last name" text "User1" - * I type in the field "New Password" text "DoesntReallyMatter" + * I type in the field "New password" text "DoesntReallyMatter" * I type in the field "Verify password" text "DoesntReallyMatter" * in the modal dialog I click on "Cancel" button Then I should not see "cancelleduser" entry in the data table