From 5edc2b307b262d056ac6350f5d08e9f083cdf42a Mon Sep 17 00:00:00 2001 From: sebo <sebastian.bergandy@external.mgm-cp.com> Date: Wed, 26 Feb 2025 17:29:16 +0100 Subject: [PATCH] OZG-5977 remove locator naming --- .../src/components/attachment/attachment.e2e.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alfa-client/apps/alfa-e2e/src/components/attachment/attachment.e2e.component.ts b/alfa-client/apps/alfa-e2e/src/components/attachment/attachment.e2e.component.ts index 14bad966ec..7e7207e390 100644 --- a/alfa-client/apps/alfa-e2e/src/components/attachment/attachment.e2e.component.ts +++ b/alfa-client/apps/alfa-e2e/src/components/attachment/attachment.e2e.component.ts @@ -86,10 +86,10 @@ class AttachmentE2EItem { class LoadingErrorAttachmentE2EItem { private readonly root: string; - private readonly attachmentSuffixLocattor: string = '-file-upload-list-item-attachment-upload'; + private readonly attachmentSuffix: string = '-file-upload-list-item-attachment-upload'; constructor(private fileName: string) { - this.root = convertToDataTestId(this.fileName) + this.attachmentSuffixLocattor; + this.root = convertToDataTestId(this.fileName) + this.attachmentSuffix; } public getRoot() { -- GitLab