Skip to content

Commit

Permalink
removed plural
Browse files Browse the repository at this point in the history
  • Loading branch information
Farhanam76 committed Sep 10, 2024
1 parent 58e7363 commit 436c137
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ describe("Supplementary dataset page", () => {
const select = getByTestId("list-select");
fireEvent.change(select, { target: { value: "121" } });
await waitFor(() => {
expect(getByText("Datasets schemas for survey ID 121")).toBeTruthy();
expect(getByText("Dataset schemas for survey ID 121")).toBeTruthy();
expect(getByTestId("datasets-table")).toBeTruthy();
expect(findAllByText("Date created")).toBeTruthy();
expect(getAllByTestId("dataset-row")).toBeTruthy();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const SchemaVersionTable = ({ surveyId, linkSupplementaryData }) => {

return (
<>
<Title>Datasets schemas for survey ID {surveyId}</Title>
<Title>Dataset schemas for survey ID {surveyId}</Title>
<Table data-test="datasets-table">
<TableHead>
<TableRow>
Expand Down

0 comments on commit 436c137

Please sign in to comment.