Use RFC 8040 URL for 'odl-mdsal-lowlevel-*' RPCs
[integration/test.git] / csit / libraries / ToolsSystem.robot
index f7c5f0fa7fd32be2b7a8cfab6a06394c28756fa3..475b051745fc2567e1ea2d8ead949bbfe9c921e6 100644 (file)
@@ -1,14 +1,17 @@
 *** Settings ***
-Documentation     Library for the tools system nodes.
-Library           Collections
-Library           SSHLibrary
-Resource          Utils.robot
-Resource          ../variables/Variables.robot
+Documentation       Library for the tools system nodes.
+
+Library             Collections
+Library             SSHLibrary
+Resource            Utils.robot
+Resource            ../variables/Variables.robot
+
 
 *** Variables ***
-@{TOOLS_SYSTEM_ALL_IPS}    @{EMPTY}
+@{TOOLS_SYSTEM_ALL_IPS}         @{EMPTY}
 @{TOOLS_SYSTEM_ALL_CONN_IDS}    @{EMPTY}
 
+
 *** Keywords ***
 Get Tools System Nodes Data
     FOR    ${i}    IN RANGE    1    ${NUM_TOOLS_SYSTEM} + 1
@@ -19,8 +22,8 @@ Get Tools System Nodes Data
     END
 
 Run Command On All Tools Systems
-    [Arguments]    ${cmd}
     [Documentation]    Run command on all tools systems
+    [Arguments]    ${cmd}
     FOR    ${ip}    IN    @{TOOLS_SYSTEM_ALL_IPS}
         Utils.Run Command On Remote System    ${ip}    ${cmd}
     END