summaryrefslogtreecommitdiff
path: root/Mailman/testing/test_usermanager.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/testing/test_usermanager.py')
-rw-r--r--Mailman/testing/test_usermanager.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Mailman/testing/test_usermanager.py b/Mailman/testing/test_usermanager.py
index fa115728e..9b98a6689 100644
--- a/Mailman/testing/test_usermanager.py
+++ b/Mailman/testing/test_usermanager.py
@@ -17,12 +17,11 @@
"""Doctest harness for testing mailing list creation and deletion."""
-import doctest
import unittest
+from Mailman.testing.base import make_docfile_suite
def test_suite():
suite = unittest.TestSuite()
- suite.addTest(doctest.DocFileSuite('../docs/usermanager.txt',
- optionflags=doctest.ELLIPSIS))
+ suite.addTest(make_docfile_suite('../docs/usermanager.txt'))
return suite