diff --git a/.golangci.yml b/.golangci.yml index 350a19ac..d86ce9bc 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -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 diff --git a/httpd/httpd_test.go b/httpd/httpd_test.go index 73ec9c63..e29418e6 100644 --- a/httpd/httpd_test.go +++ b/httpd/httpd_test.go @@ -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)