aboutsummaryrefslogtreecommitdiff
path: root/tests/test_compat.py
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2016-01-14 12:23:32 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2016-01-21 11:12:33 +0100
commited1c81d6b1633b72e1c1e97cb7bc56b413481ddf (patch)
tree4ce8ee2777f63b392568a0a1006b74775307fab2 /tests/test_compat.py
parent6a1c2abf7502a75b7bb482ad0838cd4e46e26a71 (diff)
downloadrsa-ed1c81d6b1633b72e1c1e97cb7bc56b413481ddf.tar.gz
Removed dependency on unittest2, also merged requirements.txt for py 2.x and 3.x
Diffstat (limited to 'tests/test_compat.py')
-rw-r--r--tests/test_compat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_compat.py b/tests/test_compat.py
index 1788ff0..2ab7fd2 100644
--- a/tests/test_compat.py
+++ b/tests/test_compat.py
@@ -14,12 +14,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import unittest2
+import unittest
import struct
from rsa._compat import is_bytes, byte
-class Test_byte(unittest2.TestCase):
+class Test_byte(unittest.TestCase):
def test_byte(self):
for i in range(256):
byt = byte(i)