Skip to content

Commit cd0e27d

Browse files
committed
rename + remove long logging
1 parent d40b3a9 commit cd0e27d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/client/common/process/pythonExecutionFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class PythonExecutionFactory implements IPythonExecutionFactory {
102102
const windowsStoreInterpreterCheck = this.pyenvs.isMicrosoftStoreInterpreter.bind(this.pyenvs);
103103
console.log('EJFB, 4.11', pythonPath);
104104
const a = await windowsStoreInterpreterCheck(pythonPath);
105-
console.log('EJFB, 4.11.5', a, processService);
105+
console.log('EJFB, 4.11.5');
106106
const env = a
107107
? createMicrosoftStoreEnv(pythonPath, processService)
108108
: createPythonEnv(pythonPath, processService, this.fileSystem);

src/test/testing/common/pytesttestingAdapter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { IEnvironmentVariablesProvider } from '../../../client/common/variables/
2323
import { createTypeMoq } from '../../mocks/helper';
2424
import * as pixi from '../../../client/pythonEnvironments/common/environmentManagers/pixi';
2525

26-
suite('End to End Tests: test adapters', () => {
26+
suite('End to End Tests: pytest adapters', () => {
2727
let resultResolver: ITestResultResolver;
2828
let pythonExecFactory: IPythonExecutionFactory;
2929
let configService: IConfigurationService;

src/test/testing/common/unittestingAdapter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { IEnvironmentVariablesProvider } from '../../../client/common/variables/
2222
import { createTypeMoq } from '../../mocks/helper';
2323
import * as pixi from '../../../client/pythonEnvironments/common/environmentManagers/pixi';
2424

25-
suite('End to End Tests: test adapters', () => {
25+
suite('End to End Tests: unittest adapters', () => {
2626
let resultResolver: ITestResultResolver;
2727
let pythonExecFactory: IPythonExecutionFactory;
2828
let configService: IConfigurationService;

0 commit comments

Comments
 (0)