aboutsummaryrefslogtreecommitdiff
path: root/tests/test_service_account.py
diff options
context:
space:
mode:
authorPat Ferate <pferate+github@gmail.com>2016-07-08 09:10:16 -0700
committerPat Ferate <pferate+github@gmail.com>2016-07-08 10:26:07 -0700
commit5ef8bb0950b62ba18b9c05344cdf32aca5671e2f (patch)
tree20efee4b76cbaaafa56fbd8fb9950c47f4966fd7 /tests/test_service_account.py
parent9f9dbc22f1a7dac3cf7dcf8469525a55134363d8 (diff)
downloadoauth2client-5ef8bb0950b62ba18b9c05344cdf32aca5671e2f.tar.gz
Resolve lines over 80 characters
Diffstat (limited to 'tests/test_service_account.py')
-rw-r--r--tests/test_service_account.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_service_account.py b/tests/test_service_account.py
index d9e08f9..1548632 100644
--- a/tests/test_service_account.py
+++ b/tests/test_service_account.py
@@ -179,12 +179,14 @@ class ServiceAccountCredentialsTests(unittest2.TestCase):
for creds in (creds_from_filename, creds_from_file_contents):
self.assertIsInstance(creds, ServiceAccountCredentials)
self.assertIsNone(creds.client_id)
- self.assertEqual(creds._service_account_email, service_account_email)
+ self.assertEqual(creds._service_account_email,
+ service_account_email)
self.assertIsNone(creds._private_key_id)
self.assertIsNone(creds._private_key_pkcs8_pem)
self.assertEqual(creds._private_key_pkcs12, key_contents)
if private_key_password is not None:
- self.assertEqual(creds._private_key_password, private_key_password)
+ self.assertEqual(creds._private_key_password,
+ private_key_password)
self.assertEqual(creds._scopes, ' '.join(scopes))
self.assertEqual(creds.token_uri, token_uri)
self.assertEqual(creds.revoke_uri, revoke_uri)