From e0a59fd960b4fc2ba6b8dfbdff9683c78eacfb27 Mon Sep 17 00:00:00 2001 From: David Medina Date: Sat, 16 Jun 2012 14:04:29 +0200 Subject: Update readme and authors Also some PEP8 --- pygithub3/tests/services/test_issues.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'pygithub3/tests/services') diff --git a/pygithub3/tests/services/test_issues.py b/pygithub3/tests/services/test_issues.py index 2d42405..8d34b71 100644 --- a/pygithub3/tests/services/test_issues.py +++ b/pygithub3/tests/services/test_issues.py @@ -137,7 +137,7 @@ class TestLabelsService(TestCase): request_method.return_value = mock_response('post') # invalid color with self.assertRaises(ValidationError): - args={'name': 'bug', 'color': 'FF00'} + args = {'name': 'bug', 'color': 'FF00'} self.lb.create(args) def test_UPDATE(self, request_method): @@ -150,8 +150,7 @@ class TestLabelsService(TestCase): request_method.return_value = mock_response('post') # invalid color with self.assertRaises(ValidationError): - args={'name': 'critical', - 'color': 'FF00',} + args = {'name': 'critical', 'color': 'FF00'} self.lb.update('bug', args) def test_DELETE(self, request_method): -- cgit v1.2.3-59-g8ed1b