Fix indentation

This commit is contained in:
Vincent Jacques
2013-01-29 22:23:12 +01:00
parent 921ba8df1e
commit f2c7530346
+2 -2
View File
@@ -22,7 +22,7 @@ class Issue134(Framework.BasicTestCase): # https://github.com/jacquev6/PyGithub
g = github.Github(self.oauth_token)
raised = False
try:
list(g.get_user().get_authorizations())
list(g.get_user().get_authorizations())
except github.GithubException, exception:
raised = True
self.assertEqual(exception.status, 404)
@@ -30,4 +30,4 @@ class Issue134(Framework.BasicTestCase): # https://github.com/jacquev6/PyGithub
def testGetAuthorizationsSucceedsWhenAutenticatedThroughLoginPassword(self):
g = github.Github(self.login, self.password)
self.assertListKeyEqual(g.get_user().get_authorizations(), lambda a: a.note, [None, None, 'cligh', None, None, 'GitHub Android App'])
self.assertListKeyEqual(g.get_user().get_authorizations(), lambda a: a.note, [None, None, 'cligh', None, None, 'GitHub Android App'])