diff options
author | Yang Xu <yang.xu3@huawei.com> | 2019-02-22 21:04:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-02-22 21:04:54 +0000 |
commit | bfd6f0b721c5b0024bc3446984049d026a801016 (patch) | |
tree | 8dc81e561d727c5244ffba018f4bcde49a4024de /tests/policy | |
parent | 79d5ad1d7cf265785d87ed1c79fa35487c9ce127 (diff) | |
parent | 55c1fcf7885e8ec294d5c46ac360d53441531ded (diff) |
Merge "Update REST API url in policy/pap test cases"
Diffstat (limited to 'tests/policy')
-rw-r--r-- | tests/policy/pap/pap-test.robot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/policy/pap/pap-test.robot b/tests/policy/pap/pap-test.robot index 7dca5b4d..d187d8fc 100644 --- a/tests/policy/pap/pap-test.robot +++ b/tests/policy/pap/pap-test.robot @@ -11,7 +11,7 @@ Healthcheck Log Creating session https://${POLICY_PAP_IP}:6969 ${session}= Create Session policy https://${POLICY_PAP_IP}:6969 auth=${auth} ${headers}= Create Dictionary Accept=application/json Content-Type=application/json - ${resp}= Get Request policy /healthcheck headers=${headers} + ${resp}= Get Request policy /policy/pap/v1/healthcheck headers=${headers} Log Received response from policy ${resp.text} Should Be Equal As Strings ${resp.status_code} 200 Should Be Equal As Strings ${resp.json()['code']} 200 @@ -22,7 +22,7 @@ Statistics Log Creating session https://${POLICY_PAP_IP}:6969 ${session}= Create Session policy https://${POLICY_PAP_IP}:6969 auth=${auth} ${headers}= Create Dictionary Accept=application/json Content-Type=application/json - ${resp}= Get Request policy /statistics headers=${headers} + ${resp}= Get Request policy /policy/pap/v1/statistics headers=${headers} Log Received response from policy ${resp.text} Should Be Equal As Strings ${resp.status_code} 200 Should Be Equal As Strings ${resp.json()['code']} 200 |