From 254bddaa7a3322e7023181a0989a834499f6041b Mon Sep 17 00:00:00 2001 From: James Sheppard Date: Sun, 7 May 2023 17:34:34 +0000 Subject: [PATCH] use errors pkg instead of github.com/pkg/errors Signed-off-by: James Sheppard --- pkg/lint/rules/chartfile_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/lint/rules/chartfile_test.go b/pkg/lint/rules/chartfile_test.go index 087cda047..30056522f 100644 --- a/pkg/lint/rules/chartfile_test.go +++ b/pkg/lint/rules/chartfile_test.go @@ -17,13 +17,12 @@ limitations under the License. package rules import ( + "errors" "os" "path/filepath" "strings" "testing" - "github.com/pkg/errors" - "helm.sh/helm/v3/pkg/chart" "helm.sh/helm/v3/pkg/chartutil" "helm.sh/helm/v3/pkg/lint/support"