From 1af261f39f213484e4ab5e4a182ad6613247b981 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Thu, 23 Apr 2020 17:45:26 -0600 Subject: [PATCH] fixed typo Signed-off-by: Matt Butcher --- pkg/lint/rules/values.go | 2 +- pkg/lint/rules/values_test.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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" )