diff options
author | drebs <drebs@leap.se> | 2013-02-10 00:29:07 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2013-02-10 00:29:07 -0200 |
commit | e311ab455873571708004dc2710ad0098234bea9 (patch) | |
tree | 0b25f4a362ce978608c7ca31c66d61d70fb475f8 /tests | |
parent | c6c0e0aadfe248fb8d907d12fce063dad359a140 (diff) |
Make couch wrapper terminate subprocess properly.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_couch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_couch.py b/tests/test_couch.py index 3482b035..bbdf44b4 100644 --- a/tests/test_couch.py +++ b/tests/test_couch.py @@ -88,7 +88,7 @@ stderr: def stop(self): self.process.terminate() - self.process.wait() + self.process.communicate() os.system("rm -rf %s" % self.tempdir) |