Skip to content

Commit a946f9e

Browse files
committed
1 parent e02350d commit a946f9e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

extensions/vscode-test-resolver/src/extension.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,7 @@ export function activate(context: vscode.ExtensionContext) {
130130
});
131131
});
132132
return serverPromise.then(serverAddr => {
133-
// eslint-disable-next-line no-async-promise-executor
134-
return new Promise<vscode.ResolvedAuthority>(async (res, _rej) => {
133+
return new Promise<vscode.ResolvedAuthority>((res, _rej) => {
135134
const proxyServer = net.createServer(proxySocket => {
136135
outputChannel.appendLine(`Proxy connection accepted`);
137136
let remoteReady = true, localReady = true;

0 commit comments

Comments
 (0)