From 74230b67a3149cd61e1af044cd058fa696de6534 Mon Sep 17 00:00:00 2001 From: Pushpak Chhajed Date: Sun, 25 Aug 2024 23:31:24 +0530 Subject: [PATCH] fix: use string syntax in staed of string literal --- cypress/e2e/mailpit.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/mailpit.cy.ts b/cypress/e2e/mailpit.cy.ts index 55dee0d..aac13dc 100644 --- a/cypress/e2e/mailpit.cy.ts +++ b/cypress/e2e/mailpit.cy.ts @@ -149,7 +149,7 @@ describe("mailpit query test", () => { const numberOfEmails = 5; for (let i = 1; i <= numberOfEmails; i++) { cy.mailpitSendMail({ - to: [{ Email: `test@example.com`, Name: `To` }], + to: [{ Email: "test@example.com", Name: "To" }], }); } for (let i = 1; i <= numberOfEmails; i++) {