summaryrefslogtreecommitdiff
path: root/tests/coveragetest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-27 10:36:16 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-27 10:36:16 -0500
commit16a6d9c45e80a67fe201fd0fe354fcd4aae25c9a (patch)
treec8ed0b7c2ce2dd1097ef72e0de06bb3c4fcb9cbf /tests/coveragetest.py
parent00506792848ee83de65b1740b3d82229ca55817a (diff)
downloadpython-coveragepy-16a6d9c45e80a67fe201fd0fe354fcd4aae25c9a.tar.gz
Try out pylint spelling. Kinda noisy, but fixed some stuff.
Diffstat (limited to 'tests/coveragetest.py')
-rw-r--r--tests/coveragetest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/coveragetest.py b/tests/coveragetest.py
index a680ed4..60ba505 100644
--- a/tests/coveragetest.py
+++ b/tests/coveragetest.py
@@ -274,7 +274,7 @@ class CoverageTest(
self.assertEqual(ret_actual, ret)
def run_command(self, cmd):
- """Run the command-line `cmd` in a subprocess, and print its output.
+ """Run the command-line `cmd` in a sub-process, and print its output.
Use this when you need to test the process behavior of coverage.
@@ -283,7 +283,7 @@ class CoverageTest(
Returns the process' stdout text.
"""
- # Running Python subprocesses can be tricky. Use the real name of our
+ # Running Python sub-processes can be tricky. Use the real name of our
# own executable. So "python foo.py" might get executed as
# "python3.3 foo.py". This is important because Python 3.x doesn't
# install as "python", so you might get a Python 2 executable instead
@@ -295,7 +295,7 @@ class CoverageTest(
return output
def run_command_status(self, cmd):
- """Run the command-line `cmd` in a subprocess, and print its output.
+ """Run the command-line `cmd` in a sub-process, and print its output.
Use this when you need to test the process behavior of coverage.