From 119a0d4032915b5bbf2b40c1338e53ba5ca096d2 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 20 Mar 2010 08:27:30 -0400 Subject: 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. --- test/test_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_process.py') 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) -- cgit v1.2.1