diff options
Diffstat (limited to 'test/vpp_gre_interface.py')
-rw-r--r-- | test/vpp_gre_interface.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/vpp_gre_interface.py b/test/vpp_gre_interface.py index d6f4202cf1a..46dce365a38 100644 --- a/test/vpp_gre_interface.py +++ b/test/vpp_gre_interface.py @@ -39,9 +39,6 @@ class VppGreInterface(VppInterface): session_id=self.t_session, is_add=0) - def __str__(self): - return self.object_id() - def object_id(self): return "gre-%d" % self.sw_if_index @@ -84,8 +81,5 @@ class VppGre6Interface(VppInterface): is_add=0, is_ip6=1) - def __str__(self): - return self.object_id() - def object_id(self): return "gre-%d" % self._sw_if_index |