Skip to content

Commit 73fd8f8

Browse files
author
Kartik Raj
committed
Remove comment
1 parent 07e22a6 commit 73fd8f8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/client/common/application/applicationEnvironment.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ export class ApplicationEnvironment implements IApplicationEnvironment {
6060
* @memberof ApplicationEnvironment
6161
*/
6262
public get shell(): string {
63-
// tslint:disable-next-line:no-any
6463
return vscode.env.shell;
6564
}
6665
// tslint:disable-next-line:no-any

src/test/common/terminals/shellDetectors/shellDetectors.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ suite('Shell Detectors', () => {
8585
test('Identify shell based on VSC Environment', async () => {
8686
const shellDetector = new VSCEnvironmentShellDetector(instance(appEnv));
8787
shellPathsAndIdentification.forEach((shellType, shellPath) => {
88-
when(appEnv.shell).thenReturn(shellPath as any);
88+
when(appEnv.shell).thenReturn(shellPath);
8989
expect(shellDetector.identify(telemetryProperties, { name: shellPath } as any)).to.equal(shellType, `Incorrect Shell Type from identifyShellByTerminalName, for path '${shellPath}'`);
9090
});
9191

0 commit comments

Comments
 (0)