Fix a grammatical error in status change message.

This commit is contained in:
Sadjad Fouladi
2017-06-29 17:09:18 -07:00
committed by Steve Howell
parent 74f40a0a58
commit 92fefa0e7e
2 changed files with 2 additions and 2 deletions

View File

@@ -203,7 +203,7 @@ class GithubWebhookTest(WebhookTestCase):
def test_status_msg(self):
# type: () -> None
expected_message = u"[9049f12](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b) changed it's status to success"
expected_message = u"[9049f12](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b) changed its status to success"
self.send_and_test_stream_message('status', self.EXPECTED_SUBJECT_REPO_EVENTS, expected_message, HTTP_X_GITHUB_EVENT='status')
def test_pull_request_review_msg(self):