Update Robot Framework format - step 7
[integration/test.git] / csit / suites / groupbasedpolicy / GBP / 3-node / gbp2-multitenant / 002_wait_flows.robot
index e715817c06975f62d5f3a6c5cace1d0966751a5e..a4d0dcde5093531d398af7ad861e529aed060b6b 100644 (file)
@@ -1,21 +1,25 @@
 *** Settings ***
-Documentation     Waiting until flows are created
-Default Tags      multi-tenant    setup    multi-tenant-setup
-Library           SSHLibrary
-Resource          ../../../../../libraries/Utils.robot
-Resource          ../../../../../libraries/GBP/OpenFlowUtils.robot
-Variables         ../../../../../variables/Variables.py
-Resource          ../Variables.robot
+Documentation       Waiting until flows are created
+
+Library             SSHLibrary
+Resource            ../../../../../libraries/Utils.robot
+Resource            ../../../../../libraries/GBP/OpenFlowUtils.robot
+Variables           ../../../../../variables/Variables.py
+Resource            ../Variables.robot
+
+Default Tags        multi-tenant    setup    multi-tenant-setup
+
 
 *** Variables ***
-${timeout}        10s
+${timeout}      10s
+
 
 *** Test Cases ***
 Wait For Flows
     Sleep    30s
     ${passed} =    Run Keyword And Return Status    OpenFlowUtils.Wait For Flows On Switch    ${GBP1}    sw1
-    Run Keyword If    not ${passed}    Fatal Error    Flows not created on sw1!
+    IF    not ${passed}    Fatal Error    Flows not created on sw1!
     ${passed} =    Run Keyword And Return Status    OpenFlowUtils.Wait For Flows On Switch    ${GBP2}    sw2
-    Run Keyword If    not ${passed}    Fatal Error    Flows not created on sw2!
+    IF    not ${passed}    Fatal Error    Flows not created on sw2!
     ${passed} =    Run Keyword And Return Status    OpenFlowUtils.Wait For Flows On Switch    ${GBP3}    sw3
-    Run Keyword If    not ${passed}    Fatal Error    Flows not created on sw3!
+    IF    not ${passed}    Fatal Error    Flows not created on sw3!