summaryrefslogtreecommitdiff
path: root/tests/test_threading.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2020-12-02 19:36:15 +0100
committerMatěj Cepl <mcepl@cepl.eu>2020-12-02 19:53:09 +0100
commit2ed7a360dcba129c27d1232ea561b05d5391ae4b (patch)
treeb64f58d4174479bb71ed69a8b2d1b3ff1666802c /tests/test_threading.py
parente64968e41383436c4be809b3c8706270734ca9d8 (diff)
downloadm2crypto-2ed7a360dcba129c27d1232ea561b05d5391ae4b.tar.gz
Mass removal of deprecated constructs.
* Replace unittest.makeSuite with unittest.TestLoader().loadTestsFromTestCase * import unittest from relative import
Diffstat (limited to 'tests/test_threading.py')
-rw-r--r--tests/test_threading.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_threading.py b/tests/test_threading.py
index ad1d111..ce646e2 100644
--- a/tests/test_threading.py
+++ b/tests/test_threading.py
@@ -5,7 +5,7 @@
Copyright (C) 2007 Open Source Applications Foundation. All Rights Reserved.
"""
from M2Crypto import threading as m2threading, Rand
-from tests import unittest
+from . import unittest
class ThreadingTestCase(unittest.TestCase):
@@ -31,7 +31,7 @@ class ThreadingTestCase(unittest.TestCase):
def suite():
suite = unittest.TestSuite()
- suite.addTest(unittest.makeSuite(ThreadingTestCase))
+ suite.addTest(unittest.TestLoader().loadTestsFromTestCase(ThreadingTestCase))
return suite