diff options
Diffstat (limited to 'test/vpp_bvi_interface.py')
-rw-r--r-- | test/vpp_bvi_interface.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/vpp_bvi_interface.py b/test/vpp_bvi_interface.py index 7039f29ca8d..9ab80e91c14 100644 --- a/test/vpp_bvi_interface.py +++ b/test/vpp_bvi_interface.py @@ -6,13 +6,12 @@ class VppBviInterface(VppInterface, VppObject): """VPP bvi interface.""" def __init__(self, test): - """ Create VPP BVI interface """ + """Create VPP BVI interface""" super(VppBviInterface, self).__init__(test) self.add_vpp_config() def add_vpp_config(self): - r = self.test.vapi.bvi_create(user_instance=0xffffffff, - mac="00:00:00:00:00:00") + r = self.test.vapi.bvi_create(user_instance=0xFFFFFFFF, mac="00:00:00:00:00:00") self.set_sw_if_index(r.sw_if_index) def remove_vpp_config(self): |