sort params and make them work on py3

This commit is contained in:
Jannis Gebauer
2016-09-08 10:46:06 +02:00
parent 8571d87c77
commit 78374b9d5e
15 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ class PullRequestComment(Framework.TestCase):
self.assertEqual(self.comment.html_url, "https://github.com/jacquev6/PyGithub/pull/170#issuecomment-18637907")
# test __repr__() based on this attributes
self.assertEqual(self.comment.__repr__(), 'PullRequestComment(id=886298, user=NamedUser(login="jacquev6"))')
self.assertEqual(self.comment.__repr__(), 'PullRequestComment(user=NamedUser(login="jacquev6"), id=886298)')
def testEdit(self):