aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2013-12-15 20:13:02 -0800
committerDonald Stufft <donald@stufft.io>2013-12-15 20:13:02 -0800
commitffb7726fa3042e66e8011fbd17a8b6f83f0c8110 (patch)
tree0535ae742bacf071a19f74fc487a7d1b66cb092f /tests/hazmat
parenta14c0fe87e4fbc44f566df0378f5af5a18822cb8 (diff)
parent41e5ab64e9526c1e759034bafb3d75c1492ff54d (diff)
downloadcryptography-ffb7726fa3042e66e8011fbd17a8b6f83f0c8110.tar.gz
cryptography-ffb7726fa3042e66e8011fbd17a8b6f83f0c8110.tar.bz2
cryptography-ffb7726fa3042e66e8011fbd17a8b6f83f0c8110.zip
Merge pull request #308 from alex/rename-bindings
Renamed bindings to backends
Diffstat (limited to 'tests/hazmat')
-rw-r--r--tests/hazmat/backends/__init__.py (renamed from tests/hazmat/bindings/__init__.py)0
-rw-r--r--tests/hazmat/backends/test_openssl.py (renamed from tests/hazmat/bindings/test_openssl.py)4
-rw-r--r--tests/hazmat/primitives/utils.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/hazmat/bindings/__init__.py b/tests/hazmat/backends/__init__.py
index e69de29b..e69de29b 100644
--- a/tests/hazmat/bindings/__init__.py
+++ b/tests/hazmat/backends/__init__.py
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/backends/test_openssl.py
index 1eb6f200..962959b9 100644
--- a/tests/hazmat/bindings/test_openssl.py
+++ b/tests/hazmat/backends/test_openssl.py
@@ -15,8 +15,8 @@ import pytest
from cryptography import utils
from cryptography.exceptions import UnsupportedAlgorithm
-from cryptography.hazmat.bindings import default_backend
-from cryptography.hazmat.bindings.openssl.backend import backend, Backend
+from cryptography.hazmat.backends import default_backend
+from cryptography.hazmat.backends.openssl.backend import backend, Backend
from cryptography.hazmat.primitives import interfaces
from cryptography.hazmat.primitives.ciphers import Cipher
from cryptography.hazmat.primitives.ciphers.algorithms import AES
diff --git a/tests/hazmat/primitives/utils.py b/tests/hazmat/primitives/utils.py
index 705983a0..b06f9b29 100644
--- a/tests/hazmat/primitives/utils.py
+++ b/tests/hazmat/primitives/utils.py
@@ -3,7 +3,7 @@ import os
import pytest
-from cryptography.hazmat.bindings import _ALL_BACKENDS
+from cryptography.hazmat.backends import _ALL_BACKENDS
from cryptography.hazmat.primitives import hashes, hmac
from cryptography.hazmat.primitives.ciphers import Cipher
from cryptography.exceptions import (