mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	integrations: deprecate HeaderMaps (#11018)
This commit is contained in:
		@@ -51,7 +51,7 @@ func TestPullCreate(t *testing.T) {
 | 
				
			|||||||
		resp := testPullCreate(t, session, "user1", "repo1", "master", "This is a pull title")
 | 
							resp := testPullCreate(t, session, "user1", "repo1", "master", "This is a pull title")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// check the redirected URL
 | 
							// check the redirected URL
 | 
				
			||||||
		url := resp.HeaderMap.Get("Location")
 | 
							url := resp.Header().Get("Location")
 | 
				
			||||||
		assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
 | 
							assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// check .diff can be accessed and matches performed change
 | 
							// check .diff can be accessed and matches performed change
 | 
				
			||||||
@@ -79,7 +79,7 @@ func TestPullCreate_TitleEscape(t *testing.T) {
 | 
				
			|||||||
		resp := testPullCreate(t, session, "user1", "repo1", "master", "<i>XSS PR</i>")
 | 
							resp := testPullCreate(t, session, "user1", "repo1", "master", "<i>XSS PR</i>")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// check the redirected URL
 | 
							// check the redirected URL
 | 
				
			||||||
		url := resp.HeaderMap.Get("Location")
 | 
							url := resp.Header().Get("Location")
 | 
				
			||||||
		assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
 | 
							assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// Edit title
 | 
							// Edit title
 | 
				
			||||||
@@ -144,7 +144,7 @@ func TestPullBranchDelete(t *testing.T) {
 | 
				
			|||||||
		resp := testPullCreate(t, session, "user1", "repo1", "master1", "This is a pull title")
 | 
							resp := testPullCreate(t, session, "user1", "repo1", "master1", "This is a pull title")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// check the redirected URL
 | 
							// check the redirected URL
 | 
				
			||||||
		url := resp.HeaderMap.Get("Location")
 | 
							url := resp.Header().Get("Location")
 | 
				
			||||||
		assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
 | 
							assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
 | 
				
			||||||
		req := NewRequest(t, "GET", url)
 | 
							req := NewRequest(t, "GET", url)
 | 
				
			||||||
		session.MakeRequest(t, req, http.StatusOK)
 | 
							session.MakeRequest(t, req, http.StatusOK)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user