aboutsummaryrefslogtreecommitdiffstats
path: root/test/vpp_devices.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/vpp_devices.py')
-rw-r--r--test/vpp_devices.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/vpp_devices.py b/test/vpp_devices.py
index 9e272cafe32..cff08e84435 100644
--- a/test/vpp_devices.py
+++ b/test/vpp_devices.py
@@ -2,27 +2,26 @@ from vpp_interface import VppInterface
class VppTAPInterface(VppInterface):
-
@property
def tap_id(self):
"""TAP id"""
return self._tap_id
- def __init__(self, test, tap_id=0xffffffff, mac_addr=None):
+ def __init__(self, test, tap_id=0xFFFFFFFF, mac_addr=None):
self._test = test
self._tap_id = tap_id
self._mac_addr = mac_addr
def get_vpp_dump(self):
- dump = self._test.vapi.sw_interface_tap_v2_dump(
- sw_if_index=self.sw_if_index)
+ dump = self._test.vapi.sw_interface_tap_v2_dump(sw_if_index=self.sw_if_index)
return dump
def add_vpp_config(self):
reply = self._test.vapi.tap_create_v2(
id=self._tap_id,
use_random_mac=bool(self._mac_addr),
- mac_address=self._mac_addr)
+ mac_address=self._mac_addr,
+ )
self.set_sw_if_index(reply.sw_if_index)
self._test.registry.register(self, self.test.logger)