diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-12 10:33:24 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-12 10:33:24 -0800 |
commit | e7bdb1b3e76346d4e0aa7cbf2291e6f25e7b43b3 (patch) | |
tree | f74ee207f6922cbc9fbf6d1f5a11f2912e7580f3 | |
parent | 0d22bf4a20433916dfb11a1f2aba9182ccbe0f5f (diff) | |
download | cryptography-e7bdb1b3e76346d4e0aa7cbf2291e6f25e7b43b3.tar.gz cryptography-e7bdb1b3e76346d4e0aa7cbf2291e6f25e7b43b3.tar.bz2 cryptography-e7bdb1b3e76346d4e0aa7cbf2291e6f25e7b43b3.zip |
flake8 fix
-rw-r--r-- | tests/hazmat/backends/test_multibackend.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/hazmat/backends/test_multibackend.py b/tests/hazmat/backends/test_multibackend.py index eca9627c..ce77ce2f 100644 --- a/tests/hazmat/backends/test_multibackend.py +++ b/tests/hazmat/backends/test_multibackend.py @@ -79,6 +79,7 @@ class DummyPBKDF2HMACBackend(object): if not self.pbkdf2_hmac_supported(algorithm): raise UnsupportedAlgorithm + @utils.register_interface(RSABackend) class DummyRSABackend(object): def generate_rsa_private_key(self, public_exponent, private_key): |