summaryrefslogtreecommitdiffstats
path: root/integrations/pull_create_test.go
diff options
context:
space:
mode:
authorEthan Koenig <etk39@cornell.edu>2017-06-24 20:15:42 -0400
committerLunny Xiao <xiaolunwen@gmail.com>2017-06-25 08:15:42 +0800
commitf64c232953d13043b262dc8da55acb3738e58d15 (patch)
tree9f1e88ff351e10be789783254fa51f8fe9c342a7 /integrations/pull_create_test.go
parent3ffedeab03a80e7345823d118042d17a3e3d9b52 (diff)
downloadgitea-f64c232953d13043b262dc8da55acb3738e58d15.tar.gz
gitea-f64c232953d13043b262dc8da55acb3738e58d15.zip
Improve integration test helper functions (#2049)
Set request headers in helper functions, and new helper for requests with string-formatted URLs
Diffstat (limited to 'integrations/pull_create_test.go')
-rw-r--r--integrations/pull_create_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/integrations/pull_create_test.go b/integrations/pull_create_test.go
index 9e9ba9eb3a..e03eae61d1 100644
--- a/integrations/pull_create_test.go
+++ b/integrations/pull_create_test.go
@@ -38,7 +38,6 @@ func testPullCreate(t *testing.T, session *TestSession, user, repo, branch strin
"_csrf": htmlDoc.GetCSRF(),
"title": "This is a pull title",
})
- req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
resp = session.MakeRequest(t, req)
assert.EqualValues(t, http.StatusFound, resp.HeaderCode)