diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2016-06-15 17:15:28 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2016-06-15 17:20:44 +0200 |
commit | fc4e91028d7d90d5ecd1f7a0169dd7d8860ab79b (patch) | |
tree | 39f7e66f82ddf6a2f0efd8c5129505f547da7831 /testcases/Controllers/ODL/custom_tests/neutron/020__subnets.robot | |
parent | 534d653f65574d19494b48036ad4eec9d2006d53 (diff) |
Replace deprecated keywords
It replaces get by get request, post by post request and delete by
delete request.
Change-Id: I6bfa6d8d53a1ec54416e3b8b2678e01f54bf7811
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'testcases/Controllers/ODL/custom_tests/neutron/020__subnets.robot')
-rw-r--r-- | testcases/Controllers/ODL/custom_tests/neutron/020__subnets.robot | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testcases/Controllers/ODL/custom_tests/neutron/020__subnets.robot b/testcases/Controllers/ODL/custom_tests/neutron/020__subnets.robot index 54892b0f..2d093236 100644 --- a/testcases/Controllers/ODL/custom_tests/neutron/020__subnets.robot +++ b/testcases/Controllers/ODL/custom_tests/neutron/020__subnets.robot @@ -16,7 +16,7 @@ Check OpenStack Subnets [Documentation] Checking OpenStack Neutron for known subnets [Tags] Subnets Neutron OpenStack Log ${X-AUTH} - ${resp} get OSSession ${OSREST} + ${resp} get request OSSession ${OSREST} Should be Equal As Strings ${resp.status_code} 200 ${OSResult} To Json ${resp.content} Set Suite Variable ${OSResult} @@ -26,7 +26,7 @@ Check OpenDaylight subnets [Documentation] Checking OpenDaylight Neutron API for known subnets [Tags] Subnets Neutron OpenDaylight Create Session ODLSession http://${CONTROLLER}:${PORT} headers=${HEADERS} auth=${AUTH} - ${resp} get ODLSession ${ODLREST} + ${resp} get request ODLSession ${ODLREST} Should be Equal As Strings ${resp.status_code} 200 ${ODLResult} To Json ${resp.content} Set Suite Variable ${ODLResult} @@ -36,7 +36,7 @@ Create New subnet [Documentation] Create new subnet in OpenStack [Tags] Create Subnet OpenStack Neutron Log ${data} - ${resp} post OSSession ${OSREST} data=${data} + ${resp} post request OSSession ${OSREST} data=${data} Should be Equal As Strings ${resp.status_code} 201 ${result} To JSON ${resp.content} ${result} Get From Dictionary ${result} subnet @@ -49,5 +49,5 @@ Create New subnet Check New subnet [Documentation] Check new subnet created in OpenDaylight [Tags] Check subnet OpenDaylight - ${resp} get ODLSession ${ODLREST}/${SUBNETID} + ${resp} get request ODLSession ${ODLREST}/${SUBNETID} Should be Equal As Strings ${resp.status_code} 200 |