From efb2e0984f9ac2ca0595302fb3779d3e651c69ff Mon Sep 17 00:00:00 2001 From: Cloud-Architect-Emma Date: Sun, 31 May 2026 09:36:45 +0100 Subject: [PATCH] test(action): fix template file names in trailing newline test Co-authored-by: Cloud-Architect-Emma Signed-off-by: Cloud-Architect-Emma --- 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 efcf0b0da..312e58964 100644 --- a/pkg/action/install_test.go +++ b/pkg/action/install_test.go @@ -1312,8 +1312,8 @@ func TestWriteToFileNoTrailingNewline(t *testing.T) { // Each output file should end with exactly one newline (no double newline). for _, name := range []string{ - "hello/templates/hello", "hello/templates/goodbye", + "hello/templates/with-partials", } { path := filepath.Join(dir, name) data, err := os.ReadFile(path)