diff --git a/e2e/cypress/e2e/campaign.cy.ts b/e2e/cypress/e2e/campaign.cy.ts index e3e66552d..ddd88bb9c 100644 --- a/e2e/cypress/e2e/campaign.cy.ts +++ b/e2e/cypress/e2e/campaign.cy.ts @@ -99,7 +99,7 @@ describe('Campaign', () => { }); cy.get('button') - .contains(/^Débuter l’envoi/) + .contains(/^Valider et passer au téléchargement/) .click(); cy.get('dialog[open="true"]') diff --git a/frontend/src/components/Draft/SendButton.tsx b/frontend/src/components/Draft/SendButton.tsx index 17d713c63..42c04cbd3 100644 --- a/frontend/src/components/Draft/SendButton.tsx +++ b/frontend/src/components/Draft/SendButton.tsx @@ -24,7 +24,7 @@ function SendButton(props: Readonly) { { renderComponent(); const send = await screen.findByRole('button', { - name: /^Débuter l’envoi/ + name: /^Valider et passer au téléchargement/ }); await user.click(send);