From 6084630cb18595a0150e234fcf99e46e5d3ae6e8 Mon Sep 17 00:00:00 2001 From: Simon Alling Date: Fri, 10 Dec 2021 14:45:07 +0100 Subject: [PATCH] Fix incorrect return value in mockHookLogGetter Signed-off-by: Simon Alling --- pkg/action/action_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/action/action_test.go b/pkg/action/action_test.go index 3baec6afd..d1f54650b 100644 --- a/pkg/action/action_test.go +++ b/pkg/action/action_test.go @@ -51,7 +51,7 @@ func actionConfigFixture(t *testing.T) *Configuration { } mockHookLogGetter := func(rel *release.Release, hook *release.Hook) (release.HookLog, error) { - return release.HookLog("example test pod log output"), err + return release.HookLog("example test pod log output"), nil } return &Configuration{