diff --git a/pkg/cli/values/options_test.go b/pkg/cli/values/options_test.go index eee363237..e06e8c8f6 100644 --- a/pkg/cli/values/options_test.go +++ b/pkg/cli/values/options_test.go @@ -270,6 +270,7 @@ func TestMergeValuesExplicitEmptyOverrides(t *testing.T) { { name: "empty map from values file", setup: func(t *testing.T) *Options { + t.Helper() dir := t.TempDir() file := filepath.Join(dir, "values.yaml") require.NoError(t, os.WriteFile(file, []byte("key: {}\n"), 0o600)) @@ -278,7 +279,8 @@ func TestMergeValuesExplicitEmptyOverrides(t *testing.T) { }, { name: "empty map from set flag", - setup: func(_ *testing.T) *Options { + setup: func(t *testing.T) *Options { + t.Helper() return &Options{Values: []string{"key={}"}} }, },