From ee6d46a77c70fae12ce363bee369242b234bd420 Mon Sep 17 00:00:00 2001 From: Sven Merk <33895725+nevskrem@users.noreply.github.com> Date: Fri, 16 Jul 2021 09:08:28 +0200 Subject: [PATCH] fix(protecodeExecuteScan): Fix typo in report name (#2982) * Fix exclude and enhance docs * Fix test * Fix test * Add reporting to checkmarx step * Improve text * Add protecode report * Fix fmt * Add error handling * Fix report name --- pkg/protecode/report.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/protecode/report.go b/pkg/protecode/report.go index 43fa7513c..a7f9cd91d 100644 --- a/pkg/protecode/report.go +++ b/pkg/protecode/report.go @@ -59,7 +59,7 @@ func writeJSON(path, name string, data interface{}, writeToFile func(f string, d func CreateCustomReport(productName string, productID int, data map[string]int, vulns []Vuln) reporting.ScanReport { scanReport := reporting.ScanReport{ - Title: "Procode Vulnerability Report", + Title: "Protecode Vulnerability Report", Subheaders: []reporting.Subheader{ {Description: "Product name", Details: productName}, {Description: "Product ID", Details: fmt.Sprint(productID)},