Skip to content

Commit a75c7d5

Browse files
committed
format
1 parent 7cc1a4c commit a75c7d5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/client/testing/testController/pytest/pytestExecutionAdapter.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -273,17 +273,17 @@ export class PytestTestExecutionAdapter implements ITestExecutionAdapter {
273273
// if the child has testIds then this is a run request
274274
// if the child process exited with a non-zero exit code, then we need to send the error payload.
275275
if (code !== 0) {
276-
traceError(
277-
`Subprocess closed unsuccessfully with exit code ${code} and signal ${signal} for workspace ${uri.fsPath}. Creating and sending error execution payload \n`,
278-
);
276+
traceError(
277+
`Subprocess closed unsuccessfully with exit code ${code} and signal ${signal} for workspace ${uri.fsPath}. Creating and sending error execution payload \n`,
278+
);
279279

280-
if (runInstance) {
281-
this.resultResolver?.resolveExecution(
282-
utils.createExecutionErrorPayload(code, signal, testIds, cwd),
283-
runInstance,
284-
);
285-
}
286-
}
280+
if (runInstance) {
281+
this.resultResolver?.resolveExecution(
282+
utils.createExecutionErrorPayload(code, signal, testIds, cwd),
283+
runInstance,
284+
);
285+
}
286+
}
287287

288288
// deferredTillEOT is resolved when all data sent on stdout and stderr is received, close event is only called when this occurs
289289
// due to the sync reading of the output.

0 commit comments

Comments
 (0)