@@ -31,9 +31,7 @@ import { getConfigurationSettings } from "../support/configurationSettings";
31
31
import { readFile , readJSON } from "fs-extra" ;
32
32
import { getPipVersion } from "../support/pipVersion" ;
33
33
import { checkEspIdfRequirements } from "../support/checkEspIdfRequirements" ;
34
- import {
35
- checkDebugAdapterRequirements
36
- } from "../support/checkExtensionRequirements" ;
34
+ import { checkDebugAdapterRequirements } from "../support/checkExtensionRequirements" ;
37
35
import {
38
36
checkCCppPropertiesJson ,
39
37
checkLaunchJson ,
@@ -268,6 +266,7 @@ suite("Doctor Command tests", () => {
268
266
expectedOutput += `System environment variable IDF_PYTHON_ENV_PATH ${ os . EOL } ${ process . env . IDF_PYTHON_ENV_PATH } ${ os . EOL } ` ;
269
267
expectedOutput += `System environment variable PATH ${ os . EOL } ${ processPathEnvVar } ${ os . EOL } ` ;
270
268
expectedOutput += `System environment variable PYTHON ${ os . EOL } ${ process . env . PYTHON } ${ os . EOL } ` ;
269
+ expectedOutput += `Visual Studio Code Remote name ${ vscode . env . remoteName } ${ os . EOL } ` ;
271
270
expectedOutput += `Visual Studio Code version ${ vscode . version } ${ os . EOL } ` ;
272
271
expectedOutput += `Visual Studio Code language ${ vscode . env . language } ${ os . EOL } ` ;
273
272
expectedOutput += `Visual Studio Code shell ${ vscode . env . shell } ${ os . EOL } ` ;
@@ -298,9 +297,7 @@ suite("Doctor Command tests", () => {
298
297
expectedOutput += ` ${ key } : ${ reportObj . configurationSettings . userExtraVars [ key ] } ${ os . EOL } ` ;
299
298
}
300
299
}
301
- expectedOutput += `System python Path (idf.pythonInstallPath) ${
302
- reportObj . configurationSettings . sysPythonBinPath
303
- } ${ os . EOL } `;
300
+ expectedOutput += `System python Path (idf.pythonInstallPath) ${ reportObj . configurationSettings . sysPythonBinPath } ${ os . EOL } ` ;
304
301
expectedOutput += `Virtual environment Python path (computed) ${
305
302
process . env . IDF_PYTHON_ENV_PATH + "/bin/python"
306
303
} ${ os . EOL } `;
0 commit comments