diff --git a/oauth_test.go b/oauth_test.go index 1bd86af..96f65b2 100644 --- a/oauth_test.go +++ b/oauth_test.go @@ -119,9 +119,7 @@ func (m *MockOAuthDatastore) GetUserByID(userID int64) (*User, error) { if m.DoGetUserByID != nil { return m.DoGetUserByID(userID) } - user := &User{ - - } + user := &User{} return user, nil }