From 52f343aec3a5b77c40228e2ed945a714c1389a26 Mon Sep 17 00:00:00 2001 From: Jinbo Wang Date: Fri, 24 Nov 2023 09:54:09 +0800 Subject: [PATCH] fix test case --- test/ui/command.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ui/command.test.ts b/test/ui/command.test.ts index 083fd8ab..7894907a 100644 --- a/test/ui/command.test.ts +++ b/test/ui/command.test.ts @@ -121,7 +121,7 @@ describe("Command Tests", function() { assert.ok(quickPick, `Quickpick item "src/main/java" should be found`); await quickPick!.click(); inputBox = await InputBox.create(); - assert.ok(await inputBox.getPlaceHolder() === "Input the class name", `InputBox "Input the class name" should appear`); + assert.ok(await inputBox.getPlaceHolder() === "Enter the Java file name for class/interface/enum/record/@interface", `InputBox "Enter the Java file name" should appear`); await inputBox.setText("App2"); await inputBox.confirm(); await sleep(1000);