Fix L2BD arp termination Test Case
[vpp.git] / test / vpp_mac.py
index c0e6974..27814cd 100644 (file)
@@ -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