aboutsummaryrefslogtreecommitdiffstats
path: root/tests/primitives
diff options
context:
space:
mode:
Diffstat (limited to 'tests/primitives')
-rw-r--r--tests/primitives/test_block.py2
-rw-r--r--tests/primitives/test_ciphers.py2
-rw-r--r--tests/primitives/test_nist.py3
3 files changed, 7 insertions, 0 deletions
diff --git a/tests/primitives/test_block.py b/tests/primitives/test_block.py
index 0407b0fa..774409ca 100644
--- a/tests/primitives/test_block.py
+++ b/tests/primitives/test_block.py
@@ -11,6 +11,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+from __future__ import absolute_import, division, print_function
+
import binascii
import pretend
diff --git a/tests/primitives/test_ciphers.py b/tests/primitives/test_ciphers.py
index 891c5cf8..5ee9f223 100644
--- a/tests/primitives/test_ciphers.py
+++ b/tests/primitives/test_ciphers.py
@@ -11,6 +11,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+from __future__ import absolute_import, division, print_function
+
import binascii
import pytest
diff --git a/tests/primitives/test_nist.py b/tests/primitives/test_nist.py
index dc265435..db5e0344 100644
--- a/tests/primitives/test_nist.py
+++ b/tests/primitives/test_nist.py
@@ -14,6 +14,9 @@
"""
Test using the NIST Test Vectors
"""
+
+from __future__ import absolute_import, division, print_function
+
import binascii
import os