From c2535b32fe7596c22052a29fd09f02296056750a Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Fri, 17 Oct 2025 20:44:02 +0200 Subject: [PATCH] [Editor] Fix integration test after #20372 --- test/integration/comment_spec.mjs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/integration/comment_spec.mjs b/test/integration/comment_spec.mjs index be3c437cc..3e6b16eb2 100644 --- a/test/integration/comment_spec.mjs +++ b/test/integration/comment_spec.mjs @@ -297,9 +297,7 @@ describe("Comment", () => { selector => document.querySelector(selector).title, commentButtonSelector ); - expect(title) - .withContext(`In ${browserName}`) - .toEqual("Edit comment"); + expect(title).withContext(`In ${browserName}`).toEqual("Add comment"); await page.click(commentButtonSelector); const textInputSelector = "#commentManagerTextInput";