diff --git a/pkg/analyze/common_status.go b/pkg/analyze/common_status.go index bf5b4dc1..1a5e9ea0 100644 --- a/pkg/analyze/common_status.go +++ b/pkg/analyze/common_status.go @@ -59,7 +59,7 @@ func commonStatus(outcomes []*troubleshootv1beta2.Outcome, name string, iconKey if exists == false && outcome.Warn.When != "absent" { result.IsFail = true - result.Message = fmt.Sprintf("The %s %s was not found", resourceType, name) + result.Message = fmt.Sprintf("The %s %q was not found", resourceType, name) result.URI = outcome.Fail.URI return result, nil } @@ -95,7 +95,7 @@ func commonStatus(outcomes []*troubleshootv1beta2.Outcome, name string, iconKey if exists == false && outcome.Pass.When != "absent" { result.IsFail = true - result.Message = fmt.Sprintf("The %s %s was not found", resourceType, name) + result.Message = fmt.Sprintf("The %s %q was not found", resourceType, name) result.URI = outcome.Fail.URI return result, nil }