Fix style conformance issues

Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
pull/6108/head
Martin Hickey 6 years ago
parent 095ba431aa
commit 5410e7d346

@ -20,14 +20,14 @@ import (
"fmt" "fmt"
"io" "io"
"github.com/spf13/cobra"
"github.com/gosuri/uitable" "github.com/gosuri/uitable"
"github.com/spf13/cobra"
"helm.sh/helm/cmd/helm/require" "helm.sh/helm/cmd/helm/require"
"helm.sh/helm/pkg/action" "helm.sh/helm/pkg/action"
"helm.sh/helm/pkg/releaseutil"
"helm.sh/helm/pkg/chart" "helm.sh/helm/pkg/chart"
"helm.sh/helm/pkg/release" "helm.sh/helm/pkg/release"
"helm.sh/helm/pkg/releaseutil"
) )
var historyHelp = ` var historyHelp = `
@ -132,7 +132,6 @@ func getHistory(client *action.History, name string) (string, error) {
return string(history), nil return string(history), nil
} }
func getReleaseHistory(rls []*release.Release) (history releaseHistory) { func getReleaseHistory(rls []*release.Release) (history releaseHistory) {
for i := len(rls) - 1; i >= 0; i-- { for i := len(rls) - 1; i >= 0; i-- {
r := rls[i] r := rls[i]

@ -32,14 +32,14 @@ import (
// delegates all its calls to `PrintingKubeClient` // delegates all its calls to `PrintingKubeClient`
type FailingKubeClient struct { type FailingKubeClient struct {
PrintingKubeClient PrintingKubeClient
CreateError error CreateError error
WaitError error WaitError error
GetError error GetError error
DeleteError error DeleteError error
WatchUntilReadyError error WatchUntilReadyError error
UpdateError error UpdateError error
BuildError error BuildError error
BuildUnstructuredError error BuildUnstructuredError error
WaitAndGetCompletedPodPhaseError error WaitAndGetCompletedPodPhaseError error
} }

Loading…
Cancel
Save