diff options
Diffstat (limited to 'test/framework.py')
-rw-r--r-- | test/framework.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/framework.py b/test/framework.py index 25db2b72b34..4ce8bc1380d 100644 --- a/test/framework.py +++ b/test/framework.py @@ -530,7 +530,7 @@ class VppTestCase(unittest.TestCase): cls.vpp.poll() if cls.vpp.returncode is None: cls.logger.debug("Sending TERM to vpp") - cls.vpp.kill() + cls.vpp.terminate() cls.logger.debug("Waiting for vpp to die") cls.vpp.communicate() cls.logger.debug("Deleting class vpp attribute on %s", |