summaryrefslogtreecommitdiff
path: root/src/mailman/bin/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/bin/tests')
-rw-r--r--src/mailman/bin/tests/test_master.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mailman/bin/tests/test_master.py b/src/mailman/bin/tests/test_master.py
index a97817f24..af00051a2 100644
--- a/src/mailman/bin/tests/test_master.py
+++ b/src/mailman/bin/tests/test_master.py
@@ -21,7 +21,6 @@ from __future__ import absolute_import, unicode_literals
__metaclass__ = type
__all__ = [
- 'test_suite',
]
@@ -72,10 +71,3 @@ class TestMasterLock(unittest.TestCase):
my_lock.unlock()
self.assertEqual(state, master.WatcherState.conflict)
# XXX test stale_lock and host_mismatch states.
-
-
-
-def test_suite():
- suite = unittest.TestSuite()
- suite.addTest(unittest.makeSuite(TestMasterLock))
- return suite