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:
parent
744a892fe2
commit
46a842136e
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user