aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_rsa.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-02-16 12:33:37 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2015-02-16 12:33:37 -0800
commit426eee7e732f90f04740e055381f0b37dadc2df1 (patch)
tree61540da76f61fa12fd15e2ba099a4d66f9391dfb /tests/hazmat/primitives/test_rsa.py
parent99c1b803aeb2260d8dbc131aca608276a714285c (diff)
parenta308f9f9fad845da1d1492ce8e4e37d68f3bfcfc (diff)
downloadcryptography-426eee7e732f90f04740e055381f0b37dadc2df1.tar.gz
cryptography-426eee7e732f90f04740e055381f0b37dadc2df1.tar.bz2
cryptography-426eee7e732f90f04740e055381f0b37dadc2df1.zip
Merge pull request #1665 from reaperhulk/move-asym-padding-interface
move asymmetric padding interface to primitives.asymmetric.padding
Diffstat (limited to 'tests/hazmat/primitives/test_rsa.py')
-rw-r--r--tests/hazmat/primitives/test_rsa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py
index 33e5373b..6d8e6874 100644
--- a/tests/hazmat/primitives/test_rsa.py
+++ b/tests/hazmat/primitives/test_rsa.py
@@ -37,7 +37,7 @@ from ...utils import (
)
-@utils.register_interface(interfaces.AsymmetricPadding)
+@utils.register_interface(padding.AsymmetricPadding)
class DummyPadding(object):
name = "UNSUPPORTED-PADDING"