aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/rest/tests/test_lists.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman_pgp/rest/tests/test_lists.py')
-rw-r--r--src/mailman_pgp/rest/tests/test_lists.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mailman_pgp/rest/tests/test_lists.py b/src/mailman_pgp/rest/tests/test_lists.py
index c97c392..70bcc16 100644
--- a/src/mailman_pgp/rest/tests/test_lists.py
+++ b/src/mailman_pgp/rest/tests/test_lists.py
@@ -16,8 +16,8 @@
# this program. If not, see <http://www.gnu.org/licenses/>.
""""""
+import unittest
from copy import copy
-from unittest import TestCase
from urllib.error import HTTPError
from mailman.app.lifecycle import create_list
@@ -32,7 +32,7 @@ from mailman_pgp.testing.layers import PGPRESTLayer
from mailman_pgp.testing.pgp import load_key
-class TestLists(TestCase):
+class TestLists(unittest.TestCase):
layer = PGPRESTLayer
def setUp(self):
@@ -79,7 +79,7 @@ class TestLists(TestCase):
self.assertEqual(json['list_id'], self.mlist.list_id)
-class TestListConfig(TestCase):
+class TestListConfig(unittest.TestCase):
layer = PGPRESTLayer
def setUp(self):
@@ -213,7 +213,7 @@ class TestListConfig(TestCase):
self.assertEqual(cm.exception.code, 404)
-class TestListKey(TestCase):
+class TestListKey(unittest.TestCase):
layer = PGPRESTLayer
def setUp(self):