aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2013-11-25 12:58:27 -0800
committerDavid Reid <dreid@dreid.org>2013-11-25 12:58:27 -0800
commit6dc73a9bd475dfb7a3c18c65afaeb644cce3749f (patch)
treee4c36e446a7e8095949b00241e2d5bc4080a045f /tests/hazmat/primitives
parent03fdce3a8db9bd6924640eafa17296b26a34eafb (diff)
downloadcryptography-6dc73a9bd475dfb7a3c18c65afaeb644cce3749f.tar.gz
cryptography-6dc73a9bd475dfb7a3c18c65afaeb644cce3749f.tar.bz2
cryptography-6dc73a9bd475dfb7a3c18c65afaeb644cce3749f.zip
Fix pep8
Diffstat (limited to 'tests/hazmat/primitives')
-rw-r--r--tests/hazmat/primitives/test_hashes.py3
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