From dc843d98a7a0d2bd735b96f8116578f4db3b0aa1 Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Fri, 5 Apr 2024 13:21:36 -0700 Subject: [PATCH] fix yaml syntax error --- internal/resource/command_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/resource/command_test.go b/internal/resource/command_test.go index 3d126a4..3ac36b5 100644 --- a/internal/resource/command_test.go +++ b/internal/resource/command_test.go @@ -23,7 +23,7 @@ func TestCommandLoad(t *testing.T) { decl := ` path: find args: -- {{ .Path }} +- "{{ .Path }}" ` assert.Nil(t, c.LoadDecl(decl))