fix lint errors
Some checks failed
Lint / golangci-lint (push) Successful in 10m3s
Declarative Tests / test (push) Failing after 1m10s

This commit is contained in:
Matthew Rich 2024-04-05 12:46:16 -07:00
parent c4b7819713
commit e77e7b664a

View File

@ -26,7 +26,7 @@ args:
- {{ .Path }} - {{ .Path }}
` `
c.LoadDecl(decl) assert.Nil(t, c.LoadDecl(decl))
assert.Equal(t, "find", c.Path) assert.Equal(t, "find", c.Path)
} }
@ -40,7 +40,7 @@ args:
- "{{ .Path }}" - "{{ .Path }}"
` `
c.LoadDecl(decl) assert.Nil(t, c.LoadDecl(decl))
assert.Equal(t, "find", c.Path) assert.Equal(t, "find", c.Path)
assert.Equal(t, 1, len(c.Args)) assert.Equal(t, 1, len(c.Args))