commit | aed6e8657bc316ccd6964a33c04bd650e9951ae2 | [log] [tgz] |
---|---|---|
author | Yesudeep Mangalapilly <yesudeep@gmail.com> | Thu Aug 11 01:59:50 2011 +0530 |
committer | Yesudeep Mangalapilly <yesudeep@gmail.com> | Thu Aug 11 01:59:50 2011 +0530 |
tree | 1a293b76cb4a11423566663198f6110cf5fc10b1 | |
parent | 5802431960ed2904db5f8cbcb2e318e6f2d4c792 [diff] [blame] |
Update tests to use unittest2.
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)