diff options
author | Gusted <williamzijl7@hotmail.com> | 2021-11-18 01:33:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-18 09:33:06 +0800 |
commit | c98dd7a3e0a08b1e890d6030dd51aae9dd45aaf9 (patch) | |
tree | e50b4bf9fc94e26d26d1f9709f4e8275eed60fc1 /integrations/api_team_test.go | |
parent | b01f6c1a8c9f358c297e0d1f4ee8696c9e25d5b2 (diff) | |
download | gitea-c98dd7a3e0a08b1e890d6030dd51aae9dd45aaf9.tar.gz gitea-c98dd7a3e0a08b1e890d6030dd51aae9dd45aaf9.zip |
Remove unnecessary variable assignments (#17695)
* Remove unnecessary variable assignments
As title
* enable ineffassign
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'integrations/api_team_test.go')
-rw-r--r-- | integrations/api_team_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/api_team_test.go b/integrations/api_team_test.go index 141c887e13..26d6c884b4 100644 --- a/integrations/api_team_test.go +++ b/integrations/api_team_test.go @@ -160,6 +160,6 @@ func TestAPITeamSearch(t *testing.T) { csrf = GetCSRF(t, session, "/"+org.Name) req = NewRequestf(t, "GET", "/api/v1/orgs/%s/teams/search?q=%s", org.Name, "team") req.Header.Add("X-Csrf-Token", csrf) - resp = session.MakeRequest(t, req, http.StatusForbidden) + session.MakeRequest(t, req, http.StatusForbidden) } |