python3 changes in openstack scripts
[integration/test.git] / csit / suites / openstack / neutron / 020__subnets.robot
index 584ece1c0d4e211b06bba1ec1ae829e9f0948c5a..f82653d635907d746636f37e76e9b01b1870cd1c 100644 (file)
@@ -17,7 +17,7 @@ Check OpenStack Subnets
     Log    ${X-AUTH}
     ${resp}    get request    OSSession    ${OSREST}
     Should be Equal As Strings    ${resp.status_code}    200
-    ${OSResult}    To Json    ${resp.content}
+    ${OSResult}    To Json    ${resp.text}
     Log    ${OSResult}
 
 Check OpenDaylight subnets
@@ -26,7 +26,7 @@ Check OpenDaylight subnets
     Create Session    ODLSession    http://${ODL_SYSTEM_IP}:${PORT}    headers=${HEADERS}    auth=${AUTH}
     ${resp}    get request    ODLSession    ${NEUTRON_SUBNETS_API}
     Should be Equal As Strings    ${resp.status_code}    200
-    ${ODLResult}    To Json    ${resp.content}
+    ${ODLResult}    To Json    ${resp.text}
     Log    ${ODLResult}
 
 Create New subnet
@@ -35,7 +35,7 @@ Create New subnet
     Log    ${data}
     ${resp}    post request    OSSession    ${OSREST}    data=${data}
     Should be Equal As Strings    ${resp.status_code}    201
-    ${result}    To JSON    ${resp.content}
+    ${result}    To JSON    ${resp.text}
     ${result}    Get From Dictionary    ${result}    subnet
     ${SUBNETID}    Get From Dictionary    ${result}    id
     Log    ${result}