Skip to content

Commit

Permalink
Copy changes. (#2747)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLin0991 authored Sep 17, 2024
1 parent eccb7c7 commit 9d87d7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions services/app-web/src/pages/Settings/Settings.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ const commonSettingPageTest = async () => {
expect(tableRowsDivision).toHaveLength(2)
// Check the table headers
expect(
screen.getByRole('columnheader', { name: 'Family Name' })
screen.getByRole('columnheader', { name: 'Last name' })
).toBeInTheDocument()
expect(
screen.getByRole('columnheader', { name: 'Given Name' })
screen.getByRole('columnheader', { name: 'First name' })
).toBeInTheDocument()
expect(
screen.getByRole('columnheader', { name: 'Email' })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ function CMSUserTableWithData({
columnHelper.accessor('familyName', {
id: 'familyName',
cell: (info) => info.getValue(),
header: 'Family Name',
header: 'Last name',
}),
columnHelper.accessor('givenName', {
id: 'givenName',
cell: (info) => info.getValue(),
header: 'Given Name',
header: 'First name',
}),
columnHelper.accessor('email', {
id: 'email',
Expand Down

0 comments on commit 9d87d7a

Please sign in to comment.