X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_bvi_interface.py;h=9ab80e91c14ccda102f68b9e99e7c5c2e53c8f1c;hb=d9b0c6fbf7aa5bd9af84264105b39c82028a4a29;hp=7039f29ca8d46e5e6525f85280cd6a30576c9e54;hpb=f90348bcb4afd0af2611cefc43b17ef3042b511c;p=vpp.git 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):