aboutsummaryrefslogtreecommitdiff
path: root/tests/test__service_account_info.py
diff options
context:
space:
mode:
authorJon Wayne Parrott <jonwayne@google.com>2016-12-14 12:20:24 -0800
committerGitHub <noreply@github.com>2016-12-14 12:20:24 -0800
commit54451fbd3dced2d9371f6ae36e033ae682e75dfc (patch)
treef69341a37d46db5e95d69659926b3d0853c21f1e /tests/test__service_account_info.py
parent256d2bf0afb202c7f7c46316fd7d2f0ff9a93736 (diff)
downloadgoogle-auth-library-python-54451fbd3dced2d9371f6ae36e033ae682e75dfc.tar.gz
Fix cyclic import and add Signer.from_service_account_info (#99)
Diffstat (limited to 'tests/test__service_account_info.py')
-rw-r--r--tests/test__service_account_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test__service_account_info.py b/tests/test__service_account_info.py
index 14f659a..4caea95 100644
--- a/tests/test__service_account_info.py
+++ b/tests/test__service_account_info.py
@@ -47,7 +47,7 @@ def test_from_dict_bad_private_key():
def test_from_dict_bad_format():
with pytest.raises(ValueError) as excinfo:
- _service_account_info.from_dict({})
+ _service_account_info.from_dict({}, require=('meep',))
assert excinfo.match(r'missing fields')