removed unused import

This commit is contained in:
Ashwathi Shiva
2019-12-12 22:38:28 -05:00
parent 71e66c7402
commit f35f5e4d57

View File

@@ -1,7 +1,6 @@
package analyzer
import (
"fmt"
"path"
"regexp"
@@ -33,7 +32,7 @@ func analyzeTextAnalyze(analyzer *troubleshootv1beta1.TextAnalyze, getCollectedF
if re.MatchString(string(collected)) {
return &AnalyzeResult{
Title: analyzer.CheckName,
Title: analyzer.CheckName,
IsPass: true,
Message: passOutcome.Pass.Message,
URI: passOutcome.Pass.URI,