Skip to content

Commit

Permalink
fix flaky when uuid contains "256"
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalabbad committed Dec 10, 2024
1 parent d657460 commit 4cf8009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/tests/e2e/objects/profiles/profiles.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 4cf8009

Please sign in to comment.