diff options
author | Guangrong Fu <fu.guangrong@zte.com.cn> | 2017-09-21 10:00:46 +0800 |
---|---|---|
committer | Guangrong Fu <fu.guangrong@zte.com.cn> | 2017-09-21 10:00:46 +0800 |
commit | 80c347bb3b3f8478dd61f27b08354b11f118db04 (patch) | |
tree | fb45c34c2d05defcebe9a69bf05120932c5c1908 /test/csit/tests/holmes/testcase/CommonKeywords | |
parent | 7ed6bcce5358b3e7affa59c548b4fc11016accee (diff) |
Regularize the DELETE Http Call
Invoke the API using path params.
Change-Id: If61045cc4fcebe2de105c504b2cfdbb841d144d9
Issue-ID: HOLMES-64
Signed-off-by: Guangrong Fu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'test/csit/tests/holmes/testcase/CommonKeywords')
-rw-r--r-- | test/csit/tests/holmes/testcase/CommonKeywords/HttpRequest.robot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/csit/tests/holmes/testcase/CommonKeywords/HttpRequest.robot b/test/csit/tests/holmes/testcase/CommonKeywords/HttpRequest.robot index 5b8417404..45bec5ef5 100644 --- a/test/csit/tests/holmes/testcase/CommonKeywords/HttpRequest.robot +++ b/test/csit/tests/holmes/testcase/CommonKeywords/HttpRequest.robot @@ -30,8 +30,8 @@ httpPost [Return] ${postResponse} httpDelete - [Arguments] ${restHost} ${restUrl} ${data} + [Arguments] ${restHost} ${restUrl} ${headers} create dictionary Content-Type=application/json Accept=application/json create session microservices ${restHost} ${headers} - ${deleteResponse} delete request microservices ${restUrl} ${data} + ${deleteResponse} delete request microservices ${restUrl} [Return] ${deleteResponse} |