diff options
author | Gitelman, Tal (tg851x) <tg851x@intl.att.com> | 2018-03-19 17:05:55 +0200 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-03-19 16:06:16 +0000 |
commit | a5ce6e4de3dacfac916cfc3b3270a0d7f190b632 (patch) | |
tree | bf1b58594eeeba222a62d6651a2e61e01ed2fd08 /test-apis-ci/src/main | |
parent | e0662081be935579d431d6c591a508cc05718b1d (diff) |
Align current csit testing - fix CSIT tests
Change-Id: I63e1af740ca281da404231bb3bff67f4c94541e1
Issue-ID: SDC-1097
Signed-off-by: Gitelman, Tal (tg851x) <tg851x@intl.att.com>
Diffstat (limited to 'test-apis-ci/src/main')
-rw-r--r-- | test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/rest/ResourceRestUtils.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/rest/ResourceRestUtils.java b/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/rest/ResourceRestUtils.java index 5f8eeca911..599ce006fa 100644 --- a/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/rest/ResourceRestUtils.java +++ b/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/utils/rest/ResourceRestUtils.java @@ -81,8 +81,6 @@ public class ResourceRestUtils extends BaseRestUtils { String calculateMD5 = GeneralUtility.calculateMD5Base64EncodedByString(userBodyJson); headersMap.put(HttpHeaderEnum.Content_MD5.getValue(), calculateMD5); HttpRequest http = new HttpRequest(); - // System.out.println(url); - // System.out.println(userBodyJson); RestResponse createResourceResponse = http.httpSendPost(url, userBodyJson, headersMap); if (createResourceResponse.getErrorCode() == STATUS_CODE_CREATED) { resourceDetails.setUUID(ResponseParser.getUuidFromResponse(createResourceResponse)); |