diff --git a/pkg/lint/rules/values.go b/pkg/lint/rules/values.go index 91163529e..c596687c5 100644 --- a/pkg/lint/rules/values.go +++ b/pkg/lint/rules/values.go @@ -36,7 +36,7 @@ func Values(linter *support.Linter) { // ValuesWithOverrides tests the values.yaml file. // -// If a schema iis present in the chart, values are tested against that. Otherwise, +// If a schema is present in the chart, values are tested against that. Otherwise, // they are only tested for well-formedness. // // If additional values are supplied, they are coalesced into the values in values.yaml. diff --git a/pkg/lint/rules/values_test.go b/pkg/lint/rules/values_test.go index 773d353dc..6d93d630e 100644 --- a/pkg/lint/rules/values_test.go +++ b/pkg/lint/rules/values_test.go @@ -23,6 +23,7 @@ import ( "testing" "github.com/stretchr/testify/assert" + "helm.sh/helm/v3/internal/test/ensure" )