summaryrefslogtreecommitdiff
path: root/tests/test_cmdline.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-01-26 10:32:34 -0500
committerNed Batchelder <ned@nedbatchelder.com>2015-01-26 10:32:34 -0500
commit4dbcf7e66f0f83ce80c1384b7b34984348d9cdf3 (patch)
treebc2a2412364e59e199fc63aab03aa02c1ebdc445 /tests/test_cmdline.py
parent651ff26ee9e5536e6ea49314cd3cc97faa8dcf8e (diff)
downloadpython-coveragepy-git-4dbcf7e66f0f83ce80c1384b7b34984348d9cdf3.tar.gz
Fix the tests that were looking for the doc URL.
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r--tests/test_cmdline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py
index ebf5ab59..bbf9cd82 100644
--- a/tests/test_cmdline.py
+++ b/tests/test_cmdline.py
@@ -579,7 +579,7 @@ class CmdLineStdoutTest(BaseCmdLineTest):
def test_help(self):
self.command_line("help")
out = self.stdout()
- self.assertIn("nedbatchelder.com", out)
+ self.assertIn("readthedocs.org", out)
self.assertGreater(out.count("\n"), 10)
def test_cmd_help(self):