summaryrefslogtreecommitdiff
path: root/framework/test/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'framework/test/base.py')
-rw-r--r--framework/test/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/test/base.py b/framework/test/base.py
index 63fcaf4c4..b667b1569 100644
--- a/framework/test/base.py
+++ b/framework/test/base.py
@@ -322,7 +322,7 @@ class Test(object):
universal_newlines=True,
**_EXTRA_POPEN_ARGS)
- self.result.pid = proc.pid
+ self.result.pid.append(proc.pid)
if not _SUPPRESS_TIMEOUT:
out, err = proc.communicate(timeout=self.timeout)
else: