Skip to content

Commit 5c0053f

Browse files
committed
fixed log fomat typo
1 parent a48383b commit 5c0053f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Security/CheckRunner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class CheckRunner {
142142

143143
// Traverse all groups and checks for compose output
144144
for (const group of report.report.groups) {
145-
output += `- ${group.name}`
145+
output += `\n- ${group.name}`
146146

147147
for (const check of group.checks) {
148148
checksCount++;
@@ -170,7 +170,7 @@ class CheckRunner {
170170
`\n${checksCount} check(s) executed` +
171171
`\n${skippedCheckCount} check(s) skipped` +
172172
`\n` +
173-
`\n${output}\n`;
173+
`${output}`;
174174

175175
// Write log
176176
log(output);

0 commit comments

Comments
 (0)