diff --git a/check/check.go b/check/check.go index a5f3793935a9b31d55490796b0d89a369aee0b41..f000be07cfd9fae3dfccac402591e73e779ef8f8 100644 --- a/check/check.go +++ b/check/check.go @@ -105,7 +105,7 @@ func (c *Check) run() State { // Since this is an Scored check // without tests return a 'WARN' to alert // the user that this check needs attention - if c.Scored && len(strings.TrimSpace(c.Type)) == 0 && c.Tests == nil { + if c.Scored && strings.TrimSpace(c.Type) == "" && c.Tests == nil { c.Reason = "There are no tests" c.State = WARN return c.State diff --git a/cmd/common.go b/cmd/common.go index b36205e56a288f408849daf79d147503e4655377..d9674fc154a1c74546e2ca48b6e801549e18a8da 100644 --- a/cmd/common.go +++ b/cmd/common.go @@ -411,7 +411,7 @@ func writeOutputToFile(output string, outputFile string) error { } func printOutput(output string, outputFile string) { - if len(outputFile) == 0 { + if outputFile == "" { fmt.Println(output) } else { err := writeOutputToFile(output, outputFile) diff --git a/cmd/kubernetes_version.go b/cmd/kubernetes_version.go index 2c55ed11aaf0d293f12d1ea55acbb12ce6d168e6..b72729ef48879e549dc1e61267ee977c664b2957 100644 --- a/cmd/kubernetes_version.go +++ b/cmd/kubernetes_version.go @@ -136,7 +136,7 @@ func loadCertficate(certFile string) (*tls.Certificate, error) { return nil, fmt.Errorf("unable to Decode certificate") } - glog.V(2).Info(fmt.Sprintf("Loading CA certificate")) + glog.V(2).Info("Loading CA certificate") tlsCert.Certificate = append(tlsCert.Certificate, block.Bytes) return &tlsCert, nil } @@ -154,7 +154,7 @@ func getKubernetesURL() string { return fmt.Sprintf("https://%s:%s/version", k8sHost, k8sPort) } - glog.V(2).Info(fmt.Sprintf("KUBE_BENCH_K8S_ENV is set, but environment variables KUBERNETES_SERVICE_HOST or KUBERNETES_SERVICE_PORT_HTTPS are not set")) + glog.V(2).Info("KUBE_BENCH_K8S_ENV is set, but environment variables KUBERNETES_SERVICE_HOST or KUBERNETES_SERVICE_PORT_HTTPS are not set") } return k8sVersionURL diff --git a/cmd/util.go b/cmd/util.go index 82b2928ad5c8e88d4c07cdb501864d7df698519a..62f7d8100f1bd121ad1105bd18f05a7bb08f155a 100644 --- a/cmd/util.go +++ b/cmd/util.go @@ -368,7 +368,7 @@ func makeSubstitutions(s string, ext string, m map[string]string) string { } func isEmpty(str string) bool { - return len(strings.TrimSpace(str)) == 0 + return strings.TrimSpace(str) == "" } diff --git a/integration/integration.go b/integration/integration.go index abd310d2a65ffd2152af9ad8aab138657278e867..8dc306bbb5cb39d8672304fac308caf581efbe14 100644 --- a/integration/integration.go +++ b/integration/integration.go @@ -113,7 +113,7 @@ func findPodForJob(clientset *kubernetes.Clientset, jobName string, duration tim if cp.Status.Phase == apiv1.PodFailed { fmt.Printf("pod (%s) - %s - retrying...\n", cp.Name, cp.Status.Phase) - fmt.Printf(getPodLogs(clientset, &cp)) + fmt.Print(getPodLogs(clientset, &cp)) failedPods[cp.Name] = struct{}{} break podfailed }