From 0a7dd4b269da6b8f739c7189b06227e16c3dafe7 Mon Sep 17 00:00:00 2001 From: Jesse Simpson Date: Sat, 22 Feb 2025 12:15:49 -0500 Subject: [PATCH] test: adjust failing test on extra whitespace Signed-off-by: Jesse Simpson --- pkg/action/install_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/action/install_test.go b/pkg/action/install_test.go index 6a028bd85..61cc2946f 100644 --- a/pkg/action/install_test.go +++ b/pkg/action/install_test.go @@ -447,7 +447,7 @@ func TestInstallReleaseIncorrectTemplate_DryRun(t *testing.T) { vals := map[string]interface{}{} _, err := instAction.Run(buildChart(withSampleIncludingIncorrectTemplates()), vals) expectedErr := `hello/templates/incorrect:1:10 - executing "hello/templates/incorrect" at <.Values.bad.doh>: + executing "hello/templates/incorrect" at <.Values.bad.doh>: nil pointer evaluating interface {}.doh` if err == nil { t.Fatalf("Install should fail containing error: %s", expectedErr)