Skip to content

Commit fc0f67d

Browse files
committed
Dedent external runner message text
1 parent 236012e commit fc0f67d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/testRunner/externalCompileRunner.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,12 @@ namespace Harness {
103103
report(result: ExecResult) {
104104
// eslint-disable-next-line no-null/no-null
105105
return result.status === 0 && !result.stdout.length && !result.stderr.length ? null : `Exit Code: ${result.status}
106-
Standard output:
107-
${sortErrors(stripAbsoluteImportPaths(result.stdout.toString().replace(/\r\n/g, "\n")))}
106+
Standard output:
107+
${sortErrors(stripAbsoluteImportPaths(result.stdout.toString().replace(/\r\n/g, "\n")))}
108108
109109
110-
Standard error:
111-
${stripAbsoluteImportPaths(result.stderr.toString().replace(/\r\n/g, "\n"))}`;
110+
Standard error:
111+
${stripAbsoluteImportPaths(result.stderr.toString().replace(/\r\n/g, "\n"))}`;
112112
}
113113
}
114114

@@ -153,12 +153,12 @@ namespace Harness {
153153
report(result: ExecResult) {
154154
// eslint-disable-next-line no-null/no-null
155155
return result.status === 0 && !result.stdout.length && !result.stderr.length ? null : `Exit Code: ${result.status}
156-
Standard output:
157-
${sanitizeDockerfileOutput(result.stdout.toString())}
156+
Standard output:
157+
${sanitizeDockerfileOutput(result.stdout.toString())}
158158
159159
160-
Standard error:
161-
${sanitizeDockerfileOutput(result.stderr.toString())}`;
160+
Standard error:
161+
${sanitizeDockerfileOutput(result.stderr.toString())}`;
162162
}
163163
}
164164

@@ -276,12 +276,12 @@ namespace Harness {
276276

277277
// eslint-disable-next-line no-null/no-null
278278
return !stdout.length && !stderr.length ? null : `Exit Code: ${result.status}
279-
Standard output:
280-
${stdout.replace(/\r\n/g, "\n")}
279+
Standard output:
280+
${stdout.replace(/\r\n/g, "\n")}
281281
282282
283-
Standard error:
284-
${stderr.replace(/\r\n/g, "\n")}`;
283+
Standard error:
284+
${stderr.replace(/\r\n/g, "\n")}`;
285285
}
286286
}
287287

0 commit comments

Comments
 (0)