diff --git a/tests/playwright-test/ui-mode-test-filters.spec.ts b/tests/playwright-test/ui-mode-test-filters.spec.ts
index 8469db3990..776e74f31e 100644
--- a/tests/playwright-test/ui-mode-test-filters.spec.ts
+++ b/tests/playwright-test/ui-mode-test-filters.spec.ts
@@ -60,15 +60,15 @@ test('should display native tags and filter by them on click', async ({ runUITes
const { page } = await runUITest({
'a.test.ts': `
import { test, expect } from '@playwright/test';
- test('passes', () => {});
- test('passes with tags', { tag: '@smoke' }, () => {});
+ test('p', () => {});
+ test('pwt', { tag: '@smoke' }, () => {});
`,
});
await page.locator('.ui-mode-list-item-title').getByText('smoke').click();
await expect(page.getByPlaceholder('Filter')).toHaveValue('@smoke');
await expect.poll(dumpTestTree(page)).toBe(`
▼ ◯ a.test.ts
- ◯ passes with tags <=
+ ◯ pwt
`);
});