mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Use more specific test methods (#24265)
Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
		@@ -49,7 +49,7 @@ func TestEmptyRepoAddFile(t *testing.T) {
 | 
			
		||||
	req := NewRequest(t, "GET", "/user30/empty/_new/"+setting.Repository.DefaultBranch)
 | 
			
		||||
	resp := session.MakeRequest(t, req, http.StatusOK)
 | 
			
		||||
	doc := NewHTMLParser(t, resp.Body).Find(`input[name="commit_choice"]`)
 | 
			
		||||
	assert.Equal(t, "", doc.AttrOr("checked", "_no_"))
 | 
			
		||||
	assert.Empty(t, doc.AttrOr("checked", "_no_"))
 | 
			
		||||
	req = NewRequestWithValues(t, "POST", "/user30/empty/_new/"+setting.Repository.DefaultBranch, map[string]string{
 | 
			
		||||
		"_csrf":         GetCSRF(t, session, "/user/settings"),
 | 
			
		||||
		"commit_choice": "direct",
 | 
			
		||||
@@ -76,7 +76,7 @@ func TestEmptyRepoUploadFile(t *testing.T) {
 | 
			
		||||
	req := NewRequest(t, "GET", "/user30/empty/_new/"+setting.Repository.DefaultBranch)
 | 
			
		||||
	resp := session.MakeRequest(t, req, http.StatusOK)
 | 
			
		||||
	doc := NewHTMLParser(t, resp.Body).Find(`input[name="commit_choice"]`)
 | 
			
		||||
	assert.Equal(t, "", doc.AttrOr("checked", "_no_"))
 | 
			
		||||
	assert.Empty(t, doc.AttrOr("checked", "_no_"))
 | 
			
		||||
 | 
			
		||||
	body := &bytes.Buffer{}
 | 
			
		||||
	mpForm := multipart.NewWriter(body)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user