From 50e3e18d71b56d003495f2221bba377281ca6123 Mon Sep 17 00:00:00 2001 From: Elliot Kennedy Date: Thu, 17 Dec 2020 04:21:56 +0000 Subject: [PATCH] Fix import order for golangci-lint Signed-off-by: Elliot Kennedy --- pkg/chartutil/coalesce_test.go | 2 +- pkg/chartutil/dependencies.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/chartutil/coalesce_test.go b/pkg/chartutil/coalesce_test.go index 6aee16933..d48a702c8 100644 --- a/pkg/chartutil/coalesce_test.go +++ b/pkg/chartutil/coalesce_test.go @@ -18,9 +18,9 @@ package chartutil import ( "encoding/json" - "github.com/mitchellh/copystructure" "testing" + "github.com/mitchellh/copystructure" "github.com/stretchr/testify/assert" "helm.sh/helm/v3/pkg/chart" diff --git a/pkg/chartutil/dependencies.go b/pkg/chartutil/dependencies.go index cce0fb4b5..2c26a37f9 100644 --- a/pkg/chartutil/dependencies.go +++ b/pkg/chartutil/dependencies.go @@ -16,10 +16,11 @@ limitations under the License. package chartutil import ( - "github.com/mitchellh/copystructure" "log" "strings" + "github.com/mitchellh/copystructure" + "helm.sh/helm/v3/pkg/chart" )