From 019cbe5bc11c1ce9bc9522fdbddc6a3b2182c859 Mon Sep 17 00:00:00 2001 From: Fred Bricon Date: Fri, 13 Feb 2026 10:23:22 +0100 Subject: [PATCH] fix 'Goto Super Implementation' test following #4297 Signed-off-by: Fred Bricon --- test/standard-mode-suite/gotoSuperImplementation.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/standard-mode-suite/gotoSuperImplementation.test.ts b/test/standard-mode-suite/gotoSuperImplementation.test.ts index 34a1285d1c..7d00fd5ebf 100644 --- a/test/standard-mode-suite/gotoSuperImplementation.test.ts +++ b/test/standard-mode-suite/gotoSuperImplementation.test.ts @@ -26,6 +26,6 @@ suite('Goto Super Implementation', () => { await commands.executeCommand(Commands.NAVIGATE_TO_SUPER_IMPLEMENTATION_COMMAND); - assert.equal(path.basename(window.activeTextEditor.document.fileName), "Object.class"); + assert.equal(path.basename(window.activeTextEditor.document.fileName), "Object.java"); }); });