From 8c64210622d2d3aeabb3c23522e27dcebe2fe706 Mon Sep 17 00:00:00 2001 From: David Medina Date: Thu, 17 May 2012 22:59:33 +0200 Subject: refs #10 --- pygithub3/tests/services/test_pull_requests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pygithub3/tests/services/test_pull_requests.py') diff --git a/pygithub3/tests/services/test_pull_requests.py b/pygithub3/tests/services/test_pull_requests.py index 93646df..4a9fd41 100644 --- a/pygithub3/tests/services/test_pull_requests.py +++ b/pygithub3/tests/services/test_pull_requests.py @@ -170,12 +170,12 @@ class TestPullRequestCommentsService(TestCase): ('post', _('repos/user/repo/pulls/1/comments')) ) - def test_EDIT(self, reqm): + def test_UPDATE(self, reqm): reqm.return_value = mock_response(200) data = { 'body': 'something completely different', } - self.service.edit(1, data) + self.service.update(1, data) self.assertEqual( reqm.call_args[0], ('patch', _('repos/user/repo/pulls/comments/1')) -- cgit v1.2.3-59-g8ed1b