diff options
Diffstat (limited to 'test/vpp_gre_interface.py')
-rw-r--r-- | test/vpp_gre_interface.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/vpp_gre_interface.py b/test/vpp_gre_interface.py index 1c71875f73a..acfd348d64f 100644 --- a/test/vpp_gre_interface.py +++ b/test/vpp_gre_interface.py @@ -9,7 +9,7 @@ class VppGreInterface(VppInterface): """ def __init__(self, test, src_ip, dst_ip, outer_fib_id=0, is_teb=0): - """ Create VPP loopback interface """ + """ Create VPP GRE interface """ self._sw_if_index = 0 super(VppGreInterface, self).__init__(test) self._test = test @@ -42,7 +42,7 @@ class VppGre6Interface(VppInterface): """ def __init__(self, test, src_ip, dst_ip, outer_fib_id=0, is_teb=0): - """ Create VPP loopback interface """ + """ Create VPP GRE interface """ self._sw_if_index = 0 super(VppGre6Interface, self).__init__(test) self._test = test |