Skip to content

Commit f6a7972

Browse files
committed
Fix tests
1 parent 051113f commit f6a7972

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

src/test/common/configSettings/configSettings.unit.test.ts

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ suite('Python Settings', async () => {
7979
'pipenvPath',
8080
'envFile',
8181
'poetryPath',
82-
'insidersChannel',
8382
'defaultInterpreterPath',
8483
]) {
8584
config
@@ -139,17 +138,11 @@ suite('Python Settings', async () => {
139138
}
140139

141140
suite('String settings', async () => {
142-
[
143-
'venvPath',
144-
'condaPath',
145-
'pipenvPath',
146-
'envFile',
147-
'poetryPath',
148-
'insidersChannel',
149-
'defaultInterpreterPath',
150-
].forEach(async (settingName) => {
151-
testIfValueIsUpdated(settingName, 'stringValue');
152-
});
141+
['venvPath', 'condaPath', 'pipenvPath', 'envFile', 'poetryPath', 'defaultInterpreterPath'].forEach(
142+
async (settingName) => {
143+
testIfValueIsUpdated(settingName, 'stringValue');
144+
},
145+
);
153146
});
154147

155148
suite('Boolean settings', async () => {

0 commit comments

Comments
 (0)