summaryrefslogtreecommitdiffstats
path: root/integrations/pull_compare_test.go
diff options
context:
space:
mode:
authorEthan Koenig <etk39@cornell.edu>2017-06-09 20:41:36 -0400
committerBo-Yi Wu <appleboy.tw@gmail.com>2017-06-09 19:41:36 -0500
commit61716bd8f70f55f2c5d4090c87700f6b9b6fc632 (patch)
treed3bab40ab681e0ccbbba964273ba32f6d0ace8e0 /integrations/pull_compare_test.go
parent6d613fb28ef5d884bbea1e2a4d8c3e21fc398ecc (diff)
downloadgitea-61716bd8f70f55f2c5d4090c87700f6b9b6fc632.tar.gz
gitea-61716bd8f70f55f2c5d4090c87700f6b9b6fc632.zip
Display URLs in integration test logs (#1924)
Diffstat (limited to 'integrations/pull_compare_test.go')
-rw-r--r--integrations/pull_compare_test.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/integrations/pull_compare_test.go b/integrations/pull_compare_test.go
index 567a1d13f7..737d5ab823 100644
--- a/integrations/pull_compare_test.go
+++ b/integrations/pull_compare_test.go
@@ -15,8 +15,7 @@ func TestPullCompare(t *testing.T) {
prepareTestEnv(t)
session := loginUser(t, "user2", "password")
- req, err := http.NewRequest("GET", "/user2/repo1/pulls", nil)
- assert.NoError(t, err)
+ req := NewRequest(t, "GET", "/user2/repo1/pulls")
resp := session.MakeRequest(t, req)
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
htmlDoc, err := NewHtmlParser(resp.Body)
@@ -24,8 +23,7 @@ func TestPullCompare(t *testing.T) {
link, exists := htmlDoc.doc.Find(".navbar").Find(".ui.green.button").Attr("href")
assert.True(t, exists, "The template has changed")
- req, err = http.NewRequest("GET", link, nil)
- assert.NoError(t, err)
+ req = NewRequest(t, "GET", link)
resp = session.MakeRequest(t, req)
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
}