summaryrefslogtreecommitdiffstats
path: root/integrations/pull_create_test.go
diff options
context:
space:
mode:
authorShuanglei Tao <tsl0922@gmail.com>2017-06-15 17:38:54 +0800
committerLunny Xiao <xiaolunwen@gmail.com>2017-06-15 17:38:54 +0800
commit13f0e1255af5eeb3d6d24ee2c3a169dab427a2dc (patch)
tree9909f0a8bd8eb9eb9b6876553f2f605f85630ae6 /integrations/pull_create_test.go
parent792cde7081075e63df7f42aaee14d819ff248d26 (diff)
downloadgitea-13f0e1255af5eeb3d6d24ee2c3a169dab427a2dc.tar.gz
gitea-13f0e1255af5eeb3d6d24ee2c3a169dab427a2dc.zip
Fix typo (#1974)
Diffstat (limited to 'integrations/pull_create_test.go')
-rw-r--r--integrations/pull_create_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/pull_create_test.go b/integrations/pull_create_test.go
index 953469e605..f3d4472981 100644
--- a/integrations/pull_create_test.go
+++ b/integrations/pull_create_test.go
@@ -19,7 +19,7 @@ func testPullCreate(t *testing.T, session *TestSession, user, repo, branch strin
resp := session.MakeRequest(t, req)
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
- // Click the little green button to craete a pull
+ // Click the little green button to create a pull
htmlDoc, err := NewHtmlParser(resp.Body)
assert.NoError(t, err)
link, exists := htmlDoc.doc.Find("button.ui.green.small.button").Parent().Attr("href")