diff options
Diffstat (limited to 'test/bfd.py')
-rw-r--r-- | test/bfd.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/bfd.py b/test/bfd.py index d99bbf6165c..84ef7b0ef4d 100644 --- a/test/bfd.py +++ b/test/bfd.py @@ -222,9 +222,6 @@ class VppBFDAuthKey(VppObject): def object_id(self): return "bfd-auth-key-%s" % self._conf_key_id - def __str__(self): - return self.object_id() - class VppBFDUDPSession(VppObject): """ Represents BFD UDP session in VPP """ @@ -430,9 +427,6 @@ class VppBFDUDPSession(VppObject): self.peer_addr, self.af) - def __str__(self): - return self.object_id() - def admin_up(self): """ set bfd session admin-up """ is_ipv6 = 1 if AF_INET6 == self._af else 0 |