Skip to content

Commit 2e30b65

Browse files
committed
CCM--11473: fix test href attribute
1 parent daace1e commit 2e30b65

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/test-team/template-mgmt-component-tests/email/template-mgmt-preview-submitted-email-page.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ test.describe('Preview submitted Email message template Page', () => {
9090

9191
await expect(previewSubmittedEmailTemplatePage.copyLink).toHaveAttribute(
9292
'href',
93-
`/copy-template/${templates.valid.id}`
93+
`/templates/copy-template/${templates.valid.id}`
9494
);
9595
});
9696

tests/test-team/template-mgmt-component-tests/nhs-app/template-mgmt-preview-submitted-nhs-app-page.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ test.describe('Preview submitted NHS App message template Page', () => {
8585

8686
await expect(previewSubmittedNHSAppTemplatePage.copyLink).toHaveAttribute(
8787
'href',
88-
`/copy-template/${templates.valid.id}`
88+
`/templates/copy-template/${templates.valid.id}`
8989
);
9090
});
9191

tests/test-team/template-mgmt-component-tests/sms/template-mgmt-preview-submitted-sms-page.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ test.describe('Preview submitted sms message template Page', () => {
8484

8585
await expect(previewSubmittedSMSTemplatePage.copyLink).toHaveAttribute(
8686
'href',
87-
`/copy-template/${templates.valid.id}`
87+
`/templates/copy-template/${templates.valid.id}`
8888
);
8989
});
9090

0 commit comments

Comments
 (0)