From 573242b88407158b4e714dc9e8382b09025c8fb9 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 1 Aug 2024 11:23:54 -0700 Subject: [PATCH] fix lint --- tests/playwright-test/ui-mode-test-annotations.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/playwright-test/ui-mode-test-annotations.spec.ts b/tests/playwright-test/ui-mode-test-annotations.spec.ts index 0d933220f3..7a0dea8af1 100644 --- a/tests/playwright-test/ui-mode-test-annotations.spec.ts +++ b/tests/playwright-test/ui-mode-test-annotations.spec.ts @@ -41,9 +41,9 @@ test('should display annotations', async ({ runUITest }) => { await expect(annotations.getByText('suite annotation')).toBeVisible(); await expect(annotations.getByText('bug report')).toBeVisible(); await expect(annotations.locator('.annotation-item').filter({ hasText: 'bug report' }).locator('a')) - .toHaveAttribute('href', 'https://github.com/microsoft/playwright/issues/30095'); + .toHaveAttribute('href', 'https://github.com/microsoft/playwright/issues/30095'); await expect(annotations.getByText('test repo')).toBeVisible(); await expect(annotations.locator('.annotation-item').filter({ hasText: 'test repo' }).locator('a')) - .toHaveAttribute('href', 'https://github.com/microsoft/playwright'); + .toHaveAttribute('href', 'https://github.com/microsoft/playwright'); });