We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25411e5 commit 4322684Copy full SHA for 4322684
src/test/terminals/shellIntegration/pythonStartup.test.ts
@@ -33,8 +33,6 @@ suite('Terminal - Shell Integration with PYTHONSTARTUP', () => {
33
setup(() => {
34
context = TypeMoq.Mock.ofType<IExtensionContext>();
35
globalEnvironmentVariableCollection = TypeMoq.Mock.ofType<GlobalEnvironmentVariableCollection>();
36
- // Question: Why do we have to set up environmentVariableCollection and globalEnvironmentVariableCollection in this flip-flop way?
37
- // Reference: /vscode-python/src/test/interpreters/activation/terminalEnvVarCollectionService.unit.test.ts
38
context.setup((c) => c.environmentVariableCollection).returns(() => globalEnvironmentVariableCollection.object);
39
context.setup((c) => c.storageUri).returns(() => Uri.parse('a'));
40
0 commit comments