diff options
author | David Reid <dreid@dreid.org> | 2013-11-25 12:58:27 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-11-25 12:58:27 -0800 |
commit | 6dc73a9bd475dfb7a3c18c65afaeb644cce3749f (patch) | |
tree | e4c36e446a7e8095949b00241e2d5bc4080a045f /tests | |
parent | 03fdce3a8db9bd6924640eafa17296b26a34eafb (diff) | |
download | cryptography-6dc73a9bd475dfb7a3c18c65afaeb644cce3749f.tar.gz cryptography-6dc73a9bd475dfb7a3c18c65afaeb644cce3749f.tar.bz2 cryptography-6dc73a9bd475dfb7a3c18c65afaeb644cce3749f.zip |
Fix pep8
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_hashes.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_hashes.py b/tests/hazmat/primitives/test_hashes.py index c8719b0a..ff42e8f4 100644 --- a/tests/hazmat/primitives/test_hashes.py +++ b/tests/hazmat/primitives/test_hashes.py @@ -35,7 +35,8 @@ class TestHashContext(object): pretend_backend = pretend.stub() copied_ctx = pretend.stub() pretend_ctx = pretend.stub(copy=lambda: copied_ctx) - h = hashes.Hash(hashes.SHA1(), backend=pretend_backend, ctx=pretend_ctx) + h = hashes.Hash(hashes.SHA1(), backend=pretend_backend, + ctx=pretend_ctx) assert h._backend is pretend_backend assert h.copy()._backend is h._backend |