diff options
author | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-03-28 14:42:53 -0400 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-03-28 14:43:16 -0400 |
commit | 3225f51c16843cc9de7a485ad37d37d9cbd4f973 (patch) | |
tree | 1acdb3a1e533ff82c7aefbf37aca7ef6bd653ee3 /common/src/test | |
parent | 6ab58d3a85a31badcd1f1f4ace5c37d7a4ba7e96 (diff) |
delete with payload does not work
corrected wiremock stub after client delete change
changed the method used to create a delete with payload
Change-Id: I3cbda716af30e0d2954b42a4ac965e53b4897924
Issue-ID: SO-1712
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'common/src/test')
-rw-r--r-- | common/src/test/java/org/onap/so/client/aai/AAIResourcesClientTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/test/java/org/onap/so/client/aai/AAIResourcesClientTest.java b/common/src/test/java/org/onap/so/client/aai/AAIResourcesClientTest.java index 174c76b1ef..c63d602bca 100644 --- a/common/src/test/java/org/onap/so/client/aai/AAIResourcesClientTest.java +++ b/common/src/test/java/org/onap/so/client/aai/AAIResourcesClientTest.java @@ -150,7 +150,7 @@ public class AAIResourcesClientTest { AAIResourceUri path = AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, "test2"); AAIResourceUri path2 = AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, "test3"); - wireMockRule.stubFor(post( + wireMockRule.stubFor(delete( urlPathEqualTo("/aai/" + AAIVersion.LATEST + path.build() + "/relationship-list/relationship")) .willReturn( aResponse() |