X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_mac.py;h=27814cdc761eaa29538615197d1d8b08edf72744;hb=dd89173cc177f7130eca426eb4fa5737ec59c91d;hp=c0e697461750cd29b557f946be2be053e99f6cf9;hpb=7fff3d205463d5e0a95d6bdd337100988ef323a3;p=vpp.git diff --git a/test/vpp_mac.py b/test/vpp_mac.py index c0e69746175..27814cdc761 100644 --- a/test/vpp_mac.py +++ b/test/vpp_mac.py @@ -21,19 +21,23 @@ class VppMacAddress(): @property def address(self): - return self.addr.address + return self.address + + @address.setter + def address(self, value): + self.address = value def __str__(self): return self.address def __eq__(self, other): if isinstance(other, self.__class__): - return self.address == other.addres + return self.address == other.address elif hasattr(other, "bytes"): # vl_api_mac_addres_t return self.bytes == other.bytes else: - raise Exception("Comparing VppMacAddress:%s" + raise TypeError("Comparing VppMacAddress:%s" "with unknown type: %s" % (self, other)) return False