summaryrefslogtreecommitdiffstats
path: root/test/vpp_lo_interface.py
diff options
context:
space:
mode:
authorKlement Sekera <ksekera@cisco.com>2018-06-22 13:54:07 +0200
committerFlorin Coras <florin.coras@gmail.com>2018-06-22 16:20:47 +0000
commitd5c60b96a3fd93916fc4af5c8d6d25625c28242e (patch)
tree78f5b5c614d6a3496e7acd995a42278c6f79d92a /test/vpp_lo_interface.py
parent3e2d57d8773e1d03577048f497dc7ed567fd9344 (diff)
make test: fix broken interfaces
Change-Id: I2e092774f81503e04b53cc6c6b5d357fe3fc52ab Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/vpp_lo_interface.py')
-rw-r--r--test/vpp_lo_interface.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/vpp_lo_interface.py b/test/vpp_lo_interface.py
index ae4111bec82..36f56bed8d7 100644
--- a/test/vpp_lo_interface.py
+++ b/test/vpp_lo_interface.py
@@ -5,16 +5,14 @@ from vpp_interface import VppInterface
class VppLoInterface(VppInterface, VppObject):
"""VPP loopback interface."""
- def __init__(self, test, lo_index):
+ def __init__(self, test):
""" Create VPP loopback interface """
- self._test = test
- self.add_vpp_config()
super(VppLoInterface, self).__init__(test)
- self._lo_index = lo_index
+ self.add_vpp_config()
def add_vpp_config(self):
r = self.test.vapi.create_loopback()
- self._sw_if_index = r.sw_if_index
+ self.set_sw_if_index(r.sw_if_index)
def remove_vpp_config(self):
self.test.vapi.delete_loopback(self.sw_if_index)