From 59c547d66daa0f3705b61cbce4d6c1cae1605eb7 Mon Sep 17 00:00:00 2001 From: Christoph Witzko Date: Fri, 3 Feb 2023 16:38:29 +0100 Subject: [PATCH] style: fix linter errors --- pkg/updater/helm_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/updater/helm_test.go b/pkg/updater/helm_test.go index effc932..5b4bafa 100644 --- a/pkg/updater/helm_test.go +++ b/pkg/updater/helm_test.go @@ -31,7 +31,8 @@ func TestHelmUpdaterAppVersion(t *testing.T) { conf := map[string]string{ "helm_update_appversion": "true", } - updater.Init(conf) + + require.NoError(updater.Init(conf)) nVer := "1.2.3" chartPath := "../../test/Chart.yaml"