Skip to content

Commit 217bc62

Browse files
committed
Update engine
Signed-off-by: Rob Stryker <rob@oxbeef.net>
1 parent fba9311 commit 217bc62

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"bugs": "https://github.com/redhat-developer/vscode-server-connector/issues/",
1515
"engines": {
16-
"vscode": "^1.56.0"
16+
"vscode": "^1.77.0"
1717
},
1818
"activationEvents": [
1919
"onCommand:server.createServer",

test/ui-test/common/util/testUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function showErrorNotifications(): Promise<void> {
3131
const errors = await getNotifications(NotificationType.Error);
3232
if (errors && errors.length > 0) {
3333
const report = await Promise.all(errors.map(async error => {
34-
return `${await error.getSource()}: ${await error.getMessage()} \r\n`;
34+
return `${await error.getType()}: ${await error.getMessage()} \r\n`;
3535
}));
3636
console.log(`Error appeared during creating local server adapter: ${report}`);
3737
}

0 commit comments

Comments
 (0)