[MISC] Implement final golint recommendations (#888)

pull/890/head
Amir Zarrinkafsh 2020-04-21 10:48:24 +10:00 committed by GitHub
parent b12d9d405f
commit 333137d56d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ type MethodList = []string
type authorizationMatching int
// UserInfo is the model of user second factor preferences.
// UserPreferences is the model of user second factor preferences.
type UserPreferences struct {
// The preferred 2FA method.
Method string `json:"method" valid:"required"`

View File

@ -146,7 +146,7 @@ func (m *MockAutheliaCtx) Assert200OK(t *testing.T, data interface{}) {
assert.Equal(t, string(b), string(m.Ctx.Response.Body()))
}
// GetResponseData retrieves a response from the service.
// GetResponseData retrieves a response from the service.
func (m *MockAutheliaCtx) GetResponseData(t *testing.T, data interface{}) {
okResponse := middlewares.OKResponse{}
okResponse.Data = data