diff options
Diffstat (limited to 'test/hook.py')
-rw-r--r-- | test/hook.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/hook.py b/test/hook.py index f81e5187d00..90e9bbf56b0 100644 --- a/test/hook.py +++ b/test/hook.py @@ -57,7 +57,6 @@ class PollHook(Hook): """ Hook which checks if the vpp subprocess is alive """ def __init__(self, testcase): - self.vpp_dead = False self.testcase = testcase self.logger = testcase.logger @@ -92,7 +91,7 @@ class PollHook(Hook): Poll the vpp status and throw an exception if it's not running :raises VppDiedError: exception if VPP is not running anymore """ - if self.vpp_dead: + if self.testcase.vpp_dead: # already dead, nothing to do return |