From 65e8d61591a57d0e0574c8e39a95dac4298e27b2 Mon Sep 17 00:00:00 2001 From: Tyler Gillson Date: Thu, 4 Jul 2024 11:02:06 -0600 Subject: [PATCH] test: fix helm binary path Signed-off-by: Tyler Gillson --- internal/controller/suite_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/controller/suite_test.go b/internal/controller/suite_test.go index b14a4c4a..cd99ee6f 100644 --- a/internal/controller/suite_test.go +++ b/internal/controller/suite_test.go @@ -103,7 +103,7 @@ var _ = BeforeSuite(func() { } // monkey-patch binary paths - helm.CommandPath = filepath.Join("..", "..", "bin", fmt.Sprintf("%s-%s", runtime.GOOS, runtime.GOARCH), "helm") + helm.CommandPath = filepath.Join("..", "..", "bin", "helm") var err error cfg, err = testEnv.Start()