summaryrefslogtreecommitdiffstats
path: root/test/vpp_lo_interface.py
diff options
context:
space:
mode:
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)