summaryrefslogtreecommitdiff
path: root/test/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-03-20 08:27:30 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-03-20 08:27:30 -0400
commit7632f4c60b5fbc856beea7607ce2b448f6b5bbbc (patch)
tree6df71b122ddad823f028b3b36a42db34b87b7f0e /test/test_process.py
parente305b35c2a116b4195e79a1da9e6eab9b6013295 (diff)
downloadpython-coveragepy-git-7632f4c60b5fbc856beea7607ce2b448f6b5bbbc.tar.gz
Calculate the pid suffix for data files at the end of the process so that programs calling os.fork will collect data from both child and parent. Fixes issue #56.
Diffstat (limited to 'test/test_process.py')
-rw-r--r--test/test_process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_process.py b/test/test_process.py
index 501075df..1f8a9884 100644
--- a/test/test_process.py
+++ b/test/test_process.py
@@ -227,7 +227,7 @@ class ProcessTest(CoverageTest):
self.assertEqual(out, 'Child!\n')
self.assertFalse(os.path.exists(".coverage"))
- # After running the forking program, there should be two
+ # After running the forking program, there should be two
# .coverage.machine.123 files.
self.assertEqual(self.number_of_data_files(), 2)