File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ export namespace Testing {
415
415
export const cancelUnittestExecution = l10n . t ( 'Canceled unittest test execution' ) ;
416
416
export const errorUnittestExecution = l10n . t ( 'Unittest test execution error' ) ;
417
417
export const cancelPytestExecution = l10n . t ( 'Canceled pytest test execution' ) ;
418
- export const errorPytestExecution = l10n . t ( 'Pytest test execution error' ) ;
418
+ export const errorPytestExecution = l10n . t ( 'pytest test execution error' ) ;
419
419
}
420
420
421
421
export namespace OutdatedDebugger {
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ export async function startTestIdServer(testIds: string[]): Promise<number> {
211
211
}
212
212
213
213
export function buildErrorNodeOptions ( uri : Uri , message : string , testType : string ) : ErrorTestItemOptions {
214
- const labelText = testType === 'pytest' ? 'Pytest Discovery Error' : 'Unittest Discovery Error' ;
214
+ const labelText = testType === 'pytest' ? 'pytest Discovery Error' : 'Unittest Discovery Error' ;
215
215
return {
216
216
id : `DiscoveryError:${ uri . fsPath } ` ,
217
217
label : `${ labelText } [${ path . basename ( uri . fsPath ) } ]` ,
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ export class PytestController implements ITestFrameworkController {
235
235
testController . items . add (
236
236
createErrorTestItem ( testController , {
237
237
id : `DiscoveryError:${ workspace . uri . fsPath } ` ,
238
- label : `Pytest Discovery Error [${ path . basename ( workspace . uri . fsPath ) } ]` ,
238
+ label : `pytest Discovery Error [${ path . basename ( workspace . uri . fsPath ) } ]` ,
239
239
error : util . format (
240
240
`${ cancel } discovering pytest tests (see Output > Python):\r\n` ,
241
241
message . length > 0 ? message : ex ,
You can’t perform that action at this time.
0 commit comments