Fix data type mismatch in comparison 37/37237/1
authorGary Wu <gary.i.wu@huawei.com>
Tue, 20 Mar 2018 20:22:17 +0000 (13:22 -0700)
committerGary Wu <gary.i.wu@huawei.com>
Tue, 20 Mar 2018 20:22:17 +0000 (13:22 -0700)
Change-Id: I441618a3c8917fa478391017905fcefdfcdb28c3
Issue-ID: INT-445
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
robot/resources/test_templates/closedloop_test_template.robot

index 737fc4d..9ae2ee9 100644 (file)
@@ -88,7 +88,7 @@ Get Configs VFW Policy
     ${severity}=    Get Variable Value      ${config["content"]["thresholds"][0]["severity"]}
     Should Be Equal    ${severity}    ${Expected_Severity_1}
     ${Thresold_Value}=    Get Variable Value      ${config["content"]["thresholds"][0]["thresholdValue"]}
-    Should Be Equal   ${Thresold_Value}    ${Expected_Threshold_1}
+    Should Be Equal As Integers   ${Thresold_Value}    ${Expected_Threshold_1}
     ${direction}=    Get Variable Value      ${config["content"]["thresholds"][0]["direction"]}
     Should Be Equal   ${direction}    ${Expected_Direction_1}
 
@@ -96,7 +96,7 @@ Get Configs VFW Policy
     ${severity_1}=    Get Variable Value      ${config["content"]["thresholds"][1]["severity"]}
     Should Be Equal    ${severity_1}    ${Expected_Severity_2}
     ${Thresold_Value_1}=    Get Variable Value      ${config["content"]["thresholds"][1]["thresholdValue"]}
-    Should Be Equal   ${Thresold_Value_1}    ${Expected_Threshold_2}
+    Should Be Equal As Integers   ${Thresold_Value_1}    ${Expected_Threshold_2}
     ${direction_1}=    Get Variable Value      ${config["content"]["thresholds"][1]["direction"]}
     Should Be Equal   ${direction_1}    ${Expected_Direction_2}
 
@@ -114,7 +114,7 @@ Get Configs VDNS Policy
     ${severity}=    Get Variable Value      ${config["content"]["tca_policy"]["metricsPerEventName"][0]["thresholds"][0]["severity"]}
     Should Be Equal    ${severity}    ${Expected_Severity_2}
     ${Thresold_Value}=    Get Variable Value      ${config["content"]["tca_policy"]["metricsPerEventName"][0]["thresholds"][0]["thresholdValue"]}
-    Should Be Equal   ${Thresold_Value}    ${Expected_Threshold_1}
+    Should Be Equal As Integers   ${Thresold_Value}    ${Expected_Threshold_1}
 ${direction}=    Get Variable Value      ${config["content"]["tca_policy"]["metricsPerEventName"][0]["thresholds"][0]["direction"]}
     Should Be Equal   ${direction}    ${Expected_Direction_3}