From e77e7b664a065e2154d5c41f31118d58c743e772 Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Fri, 5 Apr 2024 12:46:16 -0700 Subject: [PATCH] fix lint errors --- internal/resource/command_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/resource/command_test.go b/internal/resource/command_test.go index 44dbb70..3d126a4 100644 --- a/internal/resource/command_test.go +++ b/internal/resource/command_test.go @@ -26,7 +26,7 @@ args: - {{ .Path }} ` - c.LoadDecl(decl) + assert.Nil(t, c.LoadDecl(decl)) assert.Equal(t, "find", c.Path) } @@ -40,7 +40,7 @@ args: - "{{ .Path }}" ` - c.LoadDecl(decl) + assert.Nil(t, c.LoadDecl(decl)) assert.Equal(t, "find", c.Path) assert.Equal(t, 1, len(c.Args))