From 7a316c8d51bbb1b1c3cf0f9be7af33efa1c6f69b Mon Sep 17 00:00:00 2001 From: Justen Stall <39888103+justenstall@users.noreply.github.com> Date: Mon, 21 Apr 2025 15:57:54 -0400 Subject: [PATCH] update expected error message in install test Signed-off-by: Justen Stall <39888103+justenstall@users.noreply.github.com> --- 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 f8bd2b001..e39674c80 100644 --- a/pkg/action/install_test.go +++ b/pkg/action/install_test.go @@ -212,7 +212,7 @@ func TestInstallReleaseWithTakeOwnership_ResourceOwnedNoFlag(t *testing.T) { instAction := installActionWithConfig(config) _, err := instAction.Run(buildChart(), nil) is.Error(err) - is.Contains(err.Error(), "Unable to continue with install") + is.Contains(err.Error(), "unable to continue with install") } func TestInstallReleaseWithValues(t *testing.T) {