From 13f0e1255af5eeb3d6d24ee2c3a169dab427a2dc Mon Sep 17 00:00:00 2001
From: Shuanglei Tao <tsl0922@gmail.com>
Date: Thu, 15 Jun 2017 17:38:54 +0800
Subject: [PATCH] Fix typo (#1974)

---
 integrations/pull_create_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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")