summaryrefslogtreecommitdiff
path: root/src/mailman/model/tests/test_uid.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/model/tests/test_uid.py')
-rw-r--r--src/mailman/model/tests/test_uid.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mailman/model/tests/test_uid.py b/src/mailman/model/tests/test_uid.py
index c8ba4b770..bd4faf94f 100644
--- a/src/mailman/model/tests/test_uid.py
+++ b/src/mailman/model/tests/test_uid.py
@@ -21,7 +21,6 @@ from __future__ import absolute_import, unicode_literals
__metaclass__ = type
__all__ = [
- 'test_suite',
]
@@ -47,10 +46,3 @@ class TestUID(unittest.TestCase):
my_uuid = uuid.uuid4()
UID.record(my_uuid)
self.assertRaises(ValueError, UID.record, my_uuid)
-
-
-
-def test_suite():
- suite = unittest.TestSuite()
- suite.addTest(unittest.makeSuite(TestUID))
- return suite