aboutsummaryrefslogtreecommitdiff
path: root/tests/test_jwt.py
diff options
context:
space:
mode:
authorJin Liu <liujin@google.com>2014-09-09 11:16:48 -0700
committerJin Liu <liujin@google.com>2014-09-09 11:16:48 -0700
commit070e0e0164314f1d5eb825cd4a17d4808114d461 (patch)
treef5d08d59771a7a91fa548a689fdebefbda7839e5 /tests/test_jwt.py
parentfd6edb2fd2c684aa15ae65d912f22e640617a7d3 (diff)
downloadoauth2client-070e0e0164314f1d5eb825cd4a17d4808114d461.tar.gz
Fix the test with PyCrytoVerifier.
Diffstat (limited to 'tests/test_jwt.py')
-rw-r--r--tests/test_jwt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_jwt.py b/tests/test_jwt.py
index 51351e2..2e56a32 100644
--- a/tests/test_jwt.py
+++ b/tests/test_jwt.py
@@ -189,7 +189,7 @@ class PEMCryptTestsPyCrypto(CryptTests):
def setUp(self):
self.format = 'pem'
self.signer = crypt.PyCryptoSigner
- self.verifier = crypt.OpenSSLVerifier
+ self.verifier = crypt.PyCryptoVerifier
class PEMCryptTestsOpenSSL(CryptTests):