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
commit1fa418c6c1c33117308e3d94f18f8fc1a9193393 (patch)
tree3502c943b2a3da2c41a4b59faf002db94cf3f9ac /tests/coveragetest.py
parenta8f8bb898ac35acd493524d470223319b2271f4a (diff)
downloadpython-coveragepy-git-1fa418c6c1c33117308e3d94f18f8fc1a9193393.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 a680ed46..60ba5051 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.