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/pull_status_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/pull_status_test.go')
-rw-r--r-- | integrations/pull_status_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integrations/pull_status_test.go b/integrations/pull_status_test.go index 7c6f3d44c5..f818643005 100644 --- a/integrations/pull_status_test.go +++ b/integrations/pull_status_test.go @@ -33,12 +33,12 @@ func TestPullCreate_CommitStatus(t *testing.T) { req = NewRequest(t, "GET", "/user1/repo1/pulls") resp := session.MakeRequest(t, req, http.StatusOK) - doc := NewHTMLParser(t, resp.Body) + NewHTMLParser(t, resp.Body) // Request repository commits page req = NewRequest(t, "GET", "/user1/repo1/pulls/1/commits") resp = session.MakeRequest(t, req, http.StatusOK) - doc = NewHTMLParser(t, resp.Body) + doc := NewHTMLParser(t, resp.Body) // Get first commit URL commitURL, exists := doc.doc.Find("#commits-table tbody tr td.sha a").Last().Attr("href") |