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
commit119a0d4032915b5bbf2b40c1338e53ba5ca096d2 (patch)
treea15985081d7f6efffa36fad5f6cb4af50558858b /test/test_process.py
parent009fbc92893d663f2a1fb1ca94e086bbcef27818 (diff)
downloadpython-coveragepy-119a0d4032915b5bbf2b40c1338e53ba5ca096d2.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 501075d..1f8a988 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)