Skip to content

Commit c1ac711

Browse files
authored
chore(tslint): fix tslint (angular#3861)
1 parent 98b7f5e commit c1ac711

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/bpRunner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export class BlockingProxyRunner {
5050

5151
process.on('exit', () => {
5252
this.bpProcess.kill();
53-
})
54-
})
53+
});
54+
});
5555
}
5656

5757
checkSupportedConfig() {

lib/driverProviders/attachSession.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ export class AttachSession extends DriverProvider {
3838
* @return {WebDriver} webdriver instance
3939
*/
4040
getNewDriver(): WebDriver {
41-
var httpClient = new http.HttpClient(this.config_.seleniumAddress);
42-
var executor = new http.Executor(httpClient);
43-
var newDriver = WebDriver.attachToSession(executor, this.config_.seleniumSessionId);
41+
const httpClient = new http.HttpClient(this.config_.seleniumAddress);
42+
const executor = new http.Executor(httpClient);
43+
const newDriver = WebDriver.attachToSession(executor, this.config_.seleniumSessionId);
4444
this.drivers_.push(newDriver);
4545
return newDriver;
4646
}

0 commit comments

Comments
 (0)