aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/robot/gre.robot
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/robot/gre.robot')
-rw-r--r--resources/libraries/robot/gre.robot8
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/libraries/robot/gre.robot b/resources/libraries/robot/gre.robot
index 6ff0d989dd..c237e883a3 100644
--- a/resources/libraries/robot/gre.robot
+++ b/resources/libraries/robot/gre.robot
@@ -15,8 +15,8 @@
| Resource | resources/libraries/robot/interfaces.robot
*** Keywords ***
-| GRE tunnel interface is created and up
-| | [Documentation] | Create GRE tunnel interface on defined VPP node and put \
+| Create GRE tunnel interface and set it up
+| | [Documentation] | Create GRE tunnel interface and set it up on defined VPP node and put \
| | ... | the interface to UP state.
| | ...
| | ... | *Arguments:*
@@ -33,11 +33,11 @@
| | ... | *Example:*
| | ...
| | ... | \| ${gre_name} \| ${gre_index}= \
-| | ... | \| GRE tunnel interface is created and up \| ${dut} \
+| | ... | \| Create GRE tunnel interface and set it up \| ${dut} \
| | ... | \| 192.0.1.1 \| 192.0.1.2 \|
| | ...
| | [Arguments] | ${dut_node} | ${source_ip_address} | ${destination_ip_address}
-| | ${name} | ${index}= | Create GRE Tunnel Interface
+| | ${name} | ${index}= | Create GRE tunnel interface
| | ... | ${dut_node} | ${source_ip_address} | ${destination_ip_address}
| | Set Interface State | ${dut_node} | ${index} | up
| | [Return] | ${name} | ${index}