summaryrefslogtreecommitdiffstats
path: root/jwcrypto/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'jwcrypto/tests.py')
-rw-r--r--jwcrypto/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jwcrypto/tests.py b/jwcrypto/tests.py
index d66a5b4..e8fcd6b 100644
--- a/jwcrypto/tests.py
+++ b/jwcrypto/tests.py
@@ -174,8 +174,8 @@ class TestJWK(unittest.TestCase):
keylist = SymmetricKeys['keys']
for key in keylist:
jwkey = jwk.JWK(**key) # pylint: disable=star-args
- _ = jwkey.sign_key()
- _ = jwkey.verify_key()
+ _ = jwkey.get_op_key('sign')
+ _ = jwkey.get_op_key('verify')
e = jwkey.export()
self.assertEqual(json.loads(e), key)