Make all error strings lower case, for readability.

This commit is contained in:
Brendan Burns
2014-06-13 15:45:19 -07:00
parent 505f01a7ca
commit 482a360f9e
12 changed files with 19 additions and 19 deletions

View File

@@ -109,7 +109,7 @@ func TestSimpleList(t *testing.T) {
func TestErrorList(t *testing.T) {
storage := map[string]RESTStorage{}
simpleStorage := SimpleRESTStorage{
err: fmt.Errorf("Test Error"),
err: fmt.Errorf("test Error"),
}
storage["simple"] = &simpleStorage
handler := New(storage, "/prefix/version")