summaryrefslogtreecommitdiff
path: root/tests/test_ec_curves.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2015-10-13 14:51:24 +0200
committerMatěj Cepl <mcepl@cepl.eu>2015-10-13 15:23:06 +0200
commita4e8e60f95ce6b2c1e4bc5d804d6521392bfa66b (patch)
tree5bb242ba3646b2df8322c2555975c4244ca4588e /tests/test_ec_curves.py
parent1b5f8bbe04280558dfe577a2df203eaf0600c473 (diff)
downloadm2crypto-a4e8e60f95ce6b2c1e4bc5d804d6521392bfa66b.tar.gz
Switch unit testing to have at least 2.7 unittest API available.
Fixes #48
Diffstat (limited to 'tests/test_ec_curves.py')
-rw-r--r--tests/test_ec_curves.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_ec_curves.py b/tests/test_ec_curves.py
index d01f863..a39c93e 100644
--- a/tests/test_ec_curves.py
+++ b/tests/test_ec_curves.py
@@ -18,8 +18,12 @@
"""
-import unittest
#import sha
+try:
+ import unittest2 as unittest
+except ImportError:
+ import unittest
+
from M2Crypto import EC, Rand
from test_ecdsa import ECDSATestCase as ECDSATest