Skip to content

Commit b1440c3

Browse files
committed
fixed linter issues #1147
1 parent 808f580 commit b1440c3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/common/extension.common.configSettings.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ suite('Configuration Settings', () => {
3333
if (settingValue) {
3434
settingValue = systemVariables.resolve(settingValue);
3535
}
36-
assert.deepEqual(settingValue, pythonSettings[key], `Setting ${key} not the same`);
36+
assert.deepEqual(settingValue, (pythonSettings as any)[key], `Setting ${key} not the same`);
3737
});
3838

3939
done();

src/test/interpreters/windowsRegistryProvider.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ suite('Interpreters from Windows Registry', () => {
200200
{ key: '\\Software\\Python\\Company Two\\Tag B\\InstallPath', hive: Hive.HKCU, arch: Architecture.x86, value: 'DisplayName.Tag B', name: 'DisplayName' },
201201
{ key: '\\Software\\Python\\Company Two\\Tag C\\InstallPath', hive: Hive.HKCU, arch: Architecture.x86, value: 'Install Path Tag C' },
202202

203-
{ key: '\\Software\\Python\\Company Five\\Five !\\InstallPath', hive: Hive.HKCU, arch: Architecture.x86, value: undefined },
203+
{ key: '\\Software\\Python\\Company Five\\Five !\\InstallPath', hive: Hive.HKCU, arch: Architecture.x86, value: <any>undefined },
204204

205205
{ key: '\\Software\\Python\\Company Three\\Tag !\\InstallPath', hive: Hive.HKCU, arch: Architecture.x86, value: 'Install Path Tag !' },
206206

0 commit comments

Comments
 (0)