Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Dec 29, 2018
1 parent b8bcd7a commit 7ea2c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/common/configSettings.ts
Expand Up @@ -112,7 +112,7 @@ export class PythonSettings extends EventEmitter implements IPythonSettings {
}
public dispose() {
// tslint:disable-next-line:no-unsafe-any
this.disposables.forEach(disposable => disposable.dispose());
this.disposables.forEach(disposable => disposable && disposable.dispose());
this.disposables = [];
}
// tslint:disable-next-line:cyclomatic-complexity max-func-body-length
Expand Down

0 comments on commit 7ea2c32

Please sign in to comment.