Skip to content

Commit

Permalink
Fixed to white spaces using linting
Browse files Browse the repository at this point in the history
This commit fixed whites spaces.

resolves: HACBS-2672
Signed-off-by: sean conroy [email protected]
  • Loading branch information
seanconroy2021 committed Oct 3, 2023
1 parent 976029d commit 80a0b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/applicationsnapshot/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ func generateMarkdownSummary(r *Report) ([]byte, error) {
}

writeMarkdownField(&markdownBuffer, "Time", r.created.UTC().Format("2006-01-02 15:04:05"), "")
writeMarkdownField(&markdownBuffer, "Name", " ", "")
writeMarkdownField(&markdownBuffer, "Name", " ", "")
writeMarkdownField(&markdownBuffer, "Successes", totalSuccesses, writeIcon(totalSuccesses >= 1 && totalViolations == 0))
writeMarkdownField(&markdownBuffer, "Failures", totalViolations, writeIcon(totalViolations == 0))
writeMarkdownField(&markdownBuffer, "Warnings", totalWarnings, writeIcon(totalWarnings == 0))
Expand Down

0 comments on commit 80a0b6f

Please sign in to comment.