Skip to content

Commit 26b6255

Browse files
authored
fix small logging issues for testing deprecation & duplicate log (microsoft#22349)
fixes microsoft#22327
1 parent e604687 commit 26b6255

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/client/testing/testController/common/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const MESSAGE_ON_TESTING_OUTPUT_MOVE =
5151
'Starting now, all test run output will be sent to the Test Result panel,' +
5252
' while test discovery output will be sent to the "Python" output channel instead of the "Python Test Log" channel.' +
5353
' The "Python Test Log" channel will be deprecated within the next month.' +
54-
'See https://github.com/microsoft/vscode-python/wiki/New-Method-for-Output-Handling-in-Python-Testing for details.';
54+
' See https://github.com/microsoft/vscode-python/wiki/New-Method-for-Output-Handling-in-Python-Testing for details.';
5555

5656
export function createTestingDeferred(): Deferred<void> {
5757
return createDeferred<void>();

src/client/testing/testController/controller.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,6 @@ export class PythonTestController implements ITestController, IExtensionSingleAc
290290
} else if (settings.testing.unittestEnabled) {
291291
if (pythonTestAdapterRewriteEnabled(this.serviceContainer)) {
292292
traceInfo(`Running discovery for unittest using the new test adapter.`);
293-
traceInfo(`Running discovery for pytest using the new test adapter.`);
294293
if (workspace && workspace.uri) {
295294
const testAdapter = this.testAdapters.get(workspace.uri);
296295
if (testAdapter) {

0 commit comments

Comments
 (0)