summaryrefslogtreecommitdiff
path: root/tests/test_cmdline.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-05-17 14:49:49 -0400
committerNed Batchelder <ned@nedbatchelder.com>2020-05-17 14:49:49 -0400
commit60f86b82ffe6ff40889f24ae8d25e338da2a92b7 (patch)
treeb25c8a0109b70307d3856fa6a1a783bff2a2a666 /tests/test_cmdline.py
parent916a0c9278d83ad0fafc75fcdc80e03db8c3f257 (diff)
downloadpython-coveragepy-git-60f86b82ffe6ff40889f24ae8d25e338da2a92b7.tar.gz
Make the bare help message a bit more helpful
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 742df18b..2406d93d 100644
--- a/tests/test_cmdline.py
+++ b/tests/test_cmdline.py
@@ -791,7 +791,7 @@ class CmdLineStdoutTest(BaseCmdLineTest):
def test_minimum_help(self):
self.command_line("")
out = self.stdout()
- self.assertIn("Code coverage for Python.", out)
+ self.assertIn("Code coverage for Python", out)
self.assertLess(out.count("\n"), 4)
def test_version(self):