fix lint configuration and a warning

This commit is contained in:
Nicola Murino 2021-05-06 22:06:22 +02:00
parent 23d9ebfc91
commit d4bfc3f6b5
No known key found for this signature in database
GPG key ID: 2F1FB59433D5A8CB
2 changed files with 6 additions and 4 deletions

View file

@ -19,8 +19,11 @@ linters-settings:
simplify: true
goimports:
local-prefixes: github.com/drakkan/sftpgo
maligned:
suggest-new: true
#govet:
# report about shadowed variables
#check-shadowing: true
#enable:
# - fieldalignment
linters:
enable:
@ -34,7 +37,6 @@ linters:
- bodyclose
- gocyclo
- misspell
- maligned
- whitespace
- dupl
- rowserrcheck

View file

@ -4828,7 +4828,7 @@ func TestWebClientChangePubKeys(t *testing.T) {
checkResponseCode(t, http.StatusOK, rr)
assert.Contains(t, rr.Body.String(), "Your public keys has been successfully updated")
user, _, err = httpdtest.GetUserByUsername(defaultUsername, http.StatusOK)
user, _, err = httpdtest.GetUserByUsername(user.Username, http.StatusOK)
assert.NoError(t, err)
assert.Len(t, user.PublicKeys, 1)