X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Flibraries%2FSwitchUtils.robot;h=34b4c46eacbc3756b4351eea6b910f0122b38a2a;hb=b6e65eac5db0ec0342b2958934ba2fdc4e97b47f;hp=a8b8c401fb5cd37a9ec8f9b43023d1b1f54f08e9;hpb=94651ca9711d8eb316721775561e815830bc6c7e;p=integration%2Ftest.git diff --git a/csit/libraries/SwitchUtils.robot b/csit/libraries/SwitchUtils.robot index a8b8c401fb..34b4c46eac 100644 --- a/csit/libraries/SwitchUtils.robot +++ b/csit/libraries/SwitchUtils.robot @@ -23,15 +23,15 @@ Verify Switch In Operational Data Store [Arguments] ${switch} [Documentation] Verifies the existence of the switch.datapath_id in the operational datastore. ${resp} RequestsLibrary.Get Request session ${REST_CONTEXT} - Log ${resp.content} - Should Match Regexp ${resp.content} openflow:${switch.datapath_id} + Log ${resp.text} + Should Match Regexp ${resp.text} openflow:${switch.datapath_id} Verify Switch Not In Operational Data Store [Arguments] ${switch} [Documentation] Verifies that the given switch.datapath_id is not in the operational datastore. ${resp} RequestsLibrary.Get Request session ${REST_CONTEXT} - Log ${resp.content} - Should Not Match Regexp ${resp.content} openflow:${switch.datapath_id} + Log ${resp.text} + Should Not Match Regexp ${resp.text} openflow:${switch.datapath_id} Iterate Switch Commands From List [Arguments] ${switch} ${cmd_list}