diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-12 16:41:59 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-12 16:41:59 -0800 |
commit | 6b44a0aea74d8ec8c92d08f520b11bf58029f7a0 (patch) | |
tree | adc44cfbca50c99f261c45d893d9378ea57e673b /tests | |
parent | 4faa094526f49c83a75d21a6e796546d4d539c6c (diff) | |
parent | fcd36a9bb98fe6e13bc37cc833f317a3ee656eef (diff) | |
download | cryptography-6b44a0aea74d8ec8c92d08f520b11bf58029f7a0.tar.gz cryptography-6b44a0aea74d8ec8c92d08f520b11bf58029f7a0.tar.bz2 cryptography-6b44a0aea74d8ec8c92d08f520b11bf58029f7a0.zip |
Merge pull request #249 from dreid/hmac-context-from-backend
Get a HashContext from the hmac backend like we do a CipherContext
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_hmac.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_hmac.py b/tests/hazmat/primitives/test_hmac.py index a44838cf..0f627a10 100644 --- a/tests/hazmat/primitives/test_hmac.py +++ b/tests/hazmat/primitives/test_hmac.py @@ -37,9 +37,10 @@ class TestHMAC(object): h.update(six.u("\u00FC")) def test_copy_backend_object(self): - pretend_hmac = pretend.stub(copy_ctx=lambda a: True) + pretend_hmac = pretend.stub() pretend_backend = pretend.stub(hmacs=pretend_hmac) - pretend_ctx = pretend.stub() + copied_ctx = pretend.stub() + pretend_ctx = pretend.stub(copy=lambda: copied_ctx) h = hmac.HMAC(b"key", hashes.SHA1(), backend=pretend_backend, ctx=pretend_ctx) assert h._backend is pretend_backend |