summaryrefslogtreecommitdiff
path: root/tests/test_integers.py
diff options
context:
space:
mode:
authorYesudeep Mangalapilly <yesudeep@gmail.com>2011-08-11 01:59:50 +0530
committerYesudeep Mangalapilly <yesudeep@gmail.com>2011-08-11 01:59:50 +0530
commitaed6e8657bc316ccd6964a33c04bd650e9951ae2 (patch)
tree1a293b76cb4a11423566663198f6110cf5fc10b1 /tests/test_integers.py
parent5802431960ed2904db5f8cbcb2e318e6f2d4c792 (diff)
downloadrsa-git-aed6e8657bc316ccd6964a33c04bd650e9951ae2.tar.gz
Update tests to use unittest2.
Diffstat (limited to 'tests/test_integers.py')
-rw-r--r--tests/test_integers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_integers.py b/tests/test_integers.py
index d4fa087..0a712aa 100644
--- a/tests/test_integers.py
+++ b/tests/test_integers.py
@@ -1,10 +1,10 @@
'''Tests integer operations.'''
-import unittest
+import unittest2
import rsa.core
-class IntegerTest(unittest.TestCase):
+class IntegerTest(unittest2.TestCase):
def setUp(self):
(self.pub, self.priv) = rsa.newkeys(64)