From 4cf80096d081fb95ce9551fca0e9856924225e49 Mon Sep 17 00:00:00 2001 From: bilalabbad Date: Tue, 10 Dec 2024 16:51:23 +0100 Subject: [PATCH] fix flaky when uuid contains "256" --- frontend/app/tests/e2e/objects/profiles/profiles.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/app/tests/e2e/objects/profiles/profiles.spec.ts b/frontend/app/tests/e2e/objects/profiles/profiles.spec.ts index 8b19cef56c..5adef316a7 100644 --- a/frontend/app/tests/e2e/objects/profiles/profiles.spec.ts +++ b/frontend/app/tests/e2e/objects/profiles/profiles.spec.ts @@ -262,8 +262,8 @@ test.describe("/objects/CoreProfile - Profile for Interface L2 and fields verifi await page.goto("/objects/CoreProfile"); await page.getByRole("link", { name: PROFILE_NAME }).click(); await expect(page.locator("dl").getByText(PROFILE_NAME)).toBeVisible(); - await expect(page.getByText("2000")).toBeVisible(); - await expect(page.getByText("256")).toBeVisible(); + await expect(page.getByText('Profile Priority2000')).toBeVisible(); + await expect(page.getByText("MTU256")).toBeVisible(); await expect( page .locator("div")