Fix super cleanUp for fullstack ProcessFixture

This fixes a problem where the fullstack neutro-server process
would sometimes not be stopped after tests completed.

Change-Id: Iadf9f47fc22b39144cfc6163330ca60fefc8b464
This commit is contained in:
Henry Gessau 2015-04-21 11:35:10 -04:00
parent 744a892fe2
commit 46a842136e

View File

@ -59,7 +59,7 @@ class ProcessFixture(fixtures.Fixture):
def cleanUp(self, *args, **kwargs):
self.stop()
super(ProcessFixture, self, *args, **kwargs)
super(ProcessFixture, self).cleanUp(*args, **kwargs)
class EnvironmentFixture(fixtures.Fixture):