From a9a2e6085fa280026a874fdba6729ed61a1bc29d Mon Sep 17 00:00:00 2001 From: silverwind Date: Mon, 27 Apr 2026 01:06:02 +0200 Subject: [PATCH] Apply suggestion from @silverwind Signed-off-by: silverwind --- tests/e2e/repo-collab.test.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/e2e/repo-collab.test.ts b/tests/e2e/repo-collab.test.ts index 7e49307a41..4efdc85c6a 100644 --- a/tests/e2e/repo-collab.test.ts +++ b/tests/e2e/repo-collab.test.ts @@ -19,8 +19,6 @@ test('add collaborator search', async ({page, request}) => { await expect(result).toContainText(userName); await result.click(); await expect(input).toHaveValue(userName); - - // submit and confirm the chosen user lands in the collaborator list await page.getByRole('button', {name: 'Add Collaborator'}).click(); await expect(page.locator('body')).toContainText(userName); });