summaryrefslogtreecommitdiff
path: root/tests/test_bigfile.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
commit0a0116f248a79b404be02689498889e21b0b7dde (patch)
tree1a293b76cb4a11423566663198f6110cf5fc10b1 /tests/test_bigfile.py
parent6ce8f458f51628df68a559784d42f4874b15e21c (diff)
downloadrsa-0a0116f248a79b404be02689498889e21b0b7dde.tar.gz
Update tests to use unittest2.
Diffstat (limited to 'tests/test_bigfile.py')
-rw-r--r--tests/test_bigfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_bigfile.py b/tests/test_bigfile.py
index 39bd095..02e052e 100644
--- a/tests/test_bigfile.py
+++ b/tests/test_bigfile.py
@@ -4,12 +4,12 @@ try:
from StringIO import StringIO
except ImportError:
from io import StringIO
-import unittest
+import unittest2
import rsa
from rsa import bigfile, varblock, pkcs1
-class BigfileTest(unittest.TestCase):
+class BigfileTest(unittest2.TestCase):
def test_encrypt_decrypt_bigfile(self):