summaryrefslogtreecommitdiff
path: root/mailman/bin
diff options
context:
space:
mode:
Diffstat (limited to 'mailman/bin')
-rw-r--r--mailman/bin/docs/master.txt2
-rw-r--r--mailman/bin/testall.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/mailman/bin/docs/master.txt b/mailman/bin/docs/master.txt
index 333893f78..7565e93b1 100644
--- a/mailman/bin/docs/master.txt
+++ b/mailman/bin/docs/master.txt
@@ -7,7 +7,7 @@ is used to start, stop and manage the queue runners. mailmanctl actually is
just a wrapper around the real queue runner watcher script called master.py.
>>> from mailman.configuration import config
- >>> from mailman.tests.helpers import TestableMaster
+ >>> from mailman.testing.helpers import TestableMaster
Start the master in a subthread.
diff --git a/mailman/bin/testall.py b/mailman/bin/testall.py
index e4e2cc140..e7b3c445b 100644
--- a/mailman/bin/testall.py
+++ b/mailman/bin/testall.py
@@ -198,7 +198,7 @@ def main():
enable_logging_cfg = True
cfg_in = pkg_resources.resource_string(
- 'mailman.tests', 'testing.cfg.in')
+ 'mailman.testing', 'testing.cfg.in')
fd, cfg_out = tempfile.mkstemp(suffix='.cfg')
os.close(fd)
with open(cfg_out, 'w') as fp: