X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_bond_interface.py;h=153f1142c5c6a10b05a19d9a12e0cc49bbeff20b;hb=ffba3c3;hp=1c33e1cecd6c05dc0a9806ea1b1352fc1333bd65;hpb=9cd2d7a5a4fafadb65d772c48109d55d1e19d425;p=vpp.git diff --git a/test/vpp_bond_interface.py b/test/vpp_bond_interface.py index 1c33e1cecd6..153f1142c5c 100644 --- a/test/vpp_bond_interface.py +++ b/test/vpp_bond_interface.py @@ -9,20 +9,18 @@ class VppBondInterface(VppInterface): use_custom_mac=0, mac_address=''): """ Create VPP Bond interface """ - self._test = test + super(VppBondInterface, self).__init__(test) self.mode = mode self.lb = lb self.use_custom_mac = use_custom_mac self.mac_address = mac_address - self._sw_if_index = 0 - super(VppBondInterface, self).__init__(test) def add_vpp_config(self): r = self.test.vapi.bond_create(self.mode, self.lb, self.use_custom_mac, self.mac_address) - 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.bond_delete(self.sw_if_index)