diff options
| author | Yesudeep Mangalapilly <yesudeep@gmail.com> | 2011-08-11 01:59:50 +0530 |
|---|---|---|
| committer | Yesudeep Mangalapilly <yesudeep@gmail.com> | 2011-08-11 01:59:50 +0530 |
| commit | aed6e8657bc316ccd6964a33c04bd650e9951ae2 (patch) | |
| tree | 1a293b76cb4a11423566663198f6110cf5fc10b1 /tests/test_strings.py | |
| parent | 5802431960ed2904db5f8cbcb2e318e6f2d4c792 (diff) | |
| download | rsa-git-aed6e8657bc316ccd6964a33c04bd650e9951ae2.tar.gz | |
Update tests to use unittest2.
Diffstat (limited to 'tests/test_strings.py')
| -rw-r--r-- | tests/test_strings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_strings.py b/tests/test_strings.py index 58d3833..001456d 100644 --- a/tests/test_strings.py +++ b/tests/test_strings.py @@ -2,13 +2,13 @@ from __future__ import absolute_import -import unittest +import unittest2 import rsa from tests.constants import unicode_string -class StringTest(unittest.TestCase): +class StringTest(unittest2.TestCase): def setUp(self): (self.pub, self.priv) = rsa.newkeys(384) |
