Skip to content

Commit

Permalink
MAT-7246 updated message
Browse files Browse the repository at this point in the history
  • Loading branch information
adongare committed Jun 18, 2024
1 parent 89b9070 commit 9d53588
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/editCqlLibrary/EditCqlLibrary.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ describe("Edit Cql Library Component", () => {
});
const warningMessage = screen.getByTestId("library-warning");
expect(warningMessage.textContent).toEqual(
"Library Statement was incorrect. MADiE has overwritten it."
"Library statement was incorrect. MADiE has overwritten it."
);
});

Expand Down
4 changes: 2 additions & 2 deletions src/components/editCqlLibrary/EditCqlLibrary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,12 +249,12 @@ const EditCqlLibrary = () => {
}
if (updatedContent.isLibraryStatementChanged) {
secondaryMessages.push(
"Library Statement was incorrect. MADiE has overwritten it."
"Library statement was incorrect. MADiE has overwritten it."
);
}
if (updatedContent.isUsingStatementChanged) {
secondaryMessages.push(
"Using Statement was incorrect. MADiE has overwritten it."
"Using statement was incorrect. MADiE has overwritten it."
);
}
if (updatedContent.isValueSetChanged) {
Expand Down

0 comments on commit 9d53588

Please sign in to comment.