🛠 Add static analysis

This commit is contained in:
Dan Jones 2024-09-14 17:34:47 -05:00
commit d6546e5ff9
3 changed files with 31 additions and 8 deletions

View file

@ -14,7 +14,7 @@ func TestEmptyBaseURL(t *testing.T) {
c := config.Config{}
a, er := NewApp("0.0.0", c, testmocks.GetStore())
assert.Nil(t, a)
assert.EqualError(t, er, "Missing BaseURL")
assert.EqualError(t, er, "missing BaseURL")
}
func TestDefaultEnvironment(t *testing.T) {