summaryrefslogtreecommitdiff
path: root/tests/test_obj.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_obj.py')
-rw-r--r--tests/test_obj.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_obj.py b/tests/test_obj.py
index 7748492..55854c3 100644
--- a/tests/test_obj.py
+++ b/tests/test_obj.py
@@ -3,7 +3,7 @@
"""Unit tests for M2Crypto.m2 obj_* functions.
"""
from M2Crypto import ASN1, BIO, Rand, X509, m2, six
-from tests import unittest
+from . import unittest
"""
These functions must be cleaned up and moved to some python module
@@ -130,7 +130,7 @@ class ObjectsTestCase(unittest.TestCase):
def suite():
t_suite = unittest.TestSuite()
- t_suite.addTest(unittest.makeSuite(ObjectsTestCase))
+ t_suite.addTest(unittest.TestLoader().loadTestsFromTestCase(ObjectsTestCase))
return t_suite