Moved calls to "RequestLibrary.<action> Request" in csit/suites/ (1)
[integration/test.git] / csit / suites / capwap / basic / capwap_session.robot
index bc534432be6108fcd297fd33dedf8ae29b7e705b..9e294694ce6b06408672c62a925697643fdd0242 100644 (file)
@@ -25,7 +25,7 @@ Get Specific WTP
 
 *** Keywords ***
 Run Test Get Discovered WTP
-    ${resp}    RequestsLibrary.Get    session    ${DISC_WTP_REST}
+    ${resp}    RequestsLibrary.Get Request    session    ${DISC_WTP_REST}
     Log    ${resp.content}
     Should Be Equal As Strings    ${resp.status_code}    200
     ${result}    TO JSON    ${resp.content}
@@ -43,7 +43,7 @@ Run Test Get Specifc WTP
     ${expected_ip_addr}    get simulated wtpip    ${CONTROLLER}
     ${DISC_SPECIFIC_WTP}    catenate    SEPARATOR=    ${DISC_WTP_REST}    discovered-wtps\/    ${expected_ip_addr}    \/
     Log    ${DISC_SPECIFIC_WTP}
-    ${resp}    RequestsLibrary.Get    session    ${DISC_SPECIFIC_WTP}
+    ${resp}    RequestsLibrary.Get Request    session    ${DISC_SPECIFIC_WTP}
     Log    ${resp.content}
     Should Be Equal As Strings    ${resp.status_code}    200
     ${result}    TO JSON    ${resp.content}