summaryrefslogtreecommitdiff
path: root/src/mailman/model/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/model/tests')
-rw-r--r--src/mailman/model/tests/test_mailinglist.py2
-rw-r--r--src/mailman/model/tests/test_workflow.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/mailman/model/tests/test_mailinglist.py b/src/mailman/model/tests/test_mailinglist.py
index 3e3c5814c..0a5c8a5e9 100644
--- a/src/mailman/model/tests/test_mailinglist.py
+++ b/src/mailman/model/tests/test_mailinglist.py
@@ -17,7 +17,6 @@
"""Test MailingLists and related model objects.."""
-import pdb
import unittest
from mailman.app.lifecycle import create_list
@@ -106,6 +105,7 @@ class TestMailingList(unittest.TestCase):
self._mlist.subscribe(address)
self.assertEqual(True, self._mlist.is_subscribed(address))
+
class TestListArchiver(unittest.TestCase):
layer = ConfigLayer
diff --git a/src/mailman/model/tests/test_workflow.py b/src/mailman/model/tests/test_workflow.py
index afcba613b..2b6a593a9 100644
--- a/src/mailman/model/tests/test_workflow.py
+++ b/src/mailman/model/tests/test_workflow.py
@@ -124,7 +124,8 @@ class TestWorkflow(unittest.TestCase):
self.assertEqual(self._manager.count, 1)
def test_discard(self):
- # Discard some workflow state. This is use by IWorkflowManager.discard().
+ # Discard some workflow state. This is use by
+ # IWorkflowManager.discard().
self._manager.save('ant', 'token', 'one')
self._manager.save('bee', 'token', 'two')
self._manager.save('ant', 'nekot', 'three')