mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-28 14:06:55 +00:00 
			
		
		
		
	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>
This commit is contained in:
		| @@ -21,11 +21,11 @@ func testRepoFork(t *testing.T, session *TestSession, ownerName, repoName, forkO | ||||
|  | ||||
| 	// Step0: check the existence of the to-fork repo | ||||
| 	req := NewRequestf(t, "GET", "/%s/%s", forkOwnerName, forkRepoName) | ||||
| 	resp := session.MakeRequest(t, req, http.StatusNotFound) | ||||
| 	session.MakeRequest(t, req, http.StatusNotFound) | ||||
|  | ||||
| 	// Step1: go to the main page of repo | ||||
| 	req = NewRequestf(t, "GET", "/%s/%s", ownerName, repoName) | ||||
| 	resp = session.MakeRequest(t, req, http.StatusOK) | ||||
| 	resp := session.MakeRequest(t, req, http.StatusOK) | ||||
|  | ||||
| 	// Step2: click the fork button | ||||
| 	htmlDoc := NewHTMLParser(t, resp.Body) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user