aboutsummaryrefslogtreecommitdiffstats
path: root/integrations/repo_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/repo_test.go
parent6d613fb28ef5d884bbea1e2a4d8c3e21fc398ecc (diff)
downloadgitea-61716bd8f70f55f2c5d4090c87700f6b9b6fc632.tar.gz
gitea-61716bd8f70f55f2c5d4090c87700f6b9b6fc632.zip
Display URLs in integration test logs (#1924)
Diffstat (limited to 'integrations/repo_test.go')
-rw-r--r--integrations/repo_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/integrations/repo_test.go b/integrations/repo_test.go
index 37874c275d..130418f3fd 100644
--- a/integrations/repo_test.go
+++ b/integrations/repo_test.go
@@ -14,8 +14,7 @@ import (
func TestViewRepo(t *testing.T) {
prepareTestEnv(t)
- req, err := http.NewRequest("GET", "/user2/repo1", nil)
- assert.NoError(t, err)
+ req := NewRequest(t, "GET", "/user2/repo1")
resp := MakeRequest(req)
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
}