diff --git a/src/components/editCqlLibrary/EditCqlLibrary.test.tsx b/src/components/editCqlLibrary/EditCqlLibrary.test.tsx index 78e0a61..9934c16 100644 --- a/src/components/editCqlLibrary/EditCqlLibrary.test.tsx +++ b/src/components/editCqlLibrary/EditCqlLibrary.test.tsx @@ -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." ); }); diff --git a/src/components/editCqlLibrary/EditCqlLibrary.tsx b/src/components/editCqlLibrary/EditCqlLibrary.tsx index 8577ee1..822cafb 100644 --- a/src/components/editCqlLibrary/EditCqlLibrary.tsx +++ b/src/components/editCqlLibrary/EditCqlLibrary.tsx @@ -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) {