diff options
| author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-24 07:33:26 -0700 | 
|---|---|---|
| committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-24 07:33:26 -0700 | 
| commit | 2f2346344ae5561bc9b106cbb452efeebe3cdc45 (patch) | |
| tree | 4babc963e16a02d376075d545150c707e1ab37ff /tests/hazmat/backends | |
| parent | f281daed0e92dd3d00f9aa2fda6ae41e80a0e1fc (diff) | |
| parent | 2607ab5b932395de6554f1f4a779481cd4b87619 (diff) | |
| download | cryptography-2f2346344ae5561bc9b106cbb452efeebe3cdc45.tar.gz cryptography-2f2346344ae5561bc9b106cbb452efeebe3cdc45.tar.bz2 cryptography-2f2346344ae5561bc9b106cbb452efeebe3cdc45.zip | |
Merge pull request #1434 from alex/requires-backend-interface
Change how we represented that a test requires a backend.
Diffstat (limited to 'tests/hazmat/backends')
| -rw-r--r-- | tests/hazmat/backends/test_openssl.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index 3bea413a..39708f82 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -24,6 +24,7 @@ import pytest  from cryptography import utils  from cryptography.exceptions import InternalError, _Reasons +from cryptography.hazmat.backends.interfaces import EllipticCurveBackend  from cryptography.hazmat.backends.openssl.backend import (      Backend, backend  ) @@ -489,7 +490,7 @@ class TestOpenSSLEllipticCurve(object):              _sn_to_elliptic_curve(backend, b"fake") -@pytest.mark.elliptic +@pytest.mark.requires_backend_interface(interface=EllipticCurveBackend)  class TestDeprecatedECBackendMethods(object):      def test_elliptic_curve_private_key_from_numbers(self):          d = 5634846038258869671139984276180670841223409490498798721258 | 
