diff options
author | tragait <rahul.tyagi@est.tech> | 2020-03-20 20:35:12 +0000 |
---|---|---|
committer | tragait <rahul.tyagi@est.tech> | 2020-03-23 14:59:05 +0000 |
commit | f9fc50fee216aea657b9686aa6b8ef37236e719e (patch) | |
tree | 3824c27e9f2cd241db433f2d3180fb432311b5dc /mso-api-handlers/mso-api-handler-infra/src/test | |
parent | a7f7a879f1ed9b89563495952761de4454a33875 (diff) |
fix for getpnfworkflows url
Issue-ID: SO-2756
Signed-off-by: tragait <rahul.tyagi@est.tech>
Change-Id: I999d590dd76090a7aaabc84ad49030f24453485f
Signed-off-by: tragait <rahul.tyagi@est.tech>
Diffstat (limited to 'mso-api-handlers/mso-api-handler-infra/src/test')
-rw-r--r-- | mso-api-handlers/mso-api-handler-infra/src/test/java/org/onap/so/apihandlerinfra/WorkflowSpecificationsHandlerTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mso-api-handlers/mso-api-handler-infra/src/test/java/org/onap/so/apihandlerinfra/WorkflowSpecificationsHandlerTest.java b/mso-api-handlers/mso-api-handler-infra/src/test/java/org/onap/so/apihandlerinfra/WorkflowSpecificationsHandlerTest.java index 21e6d53c14..4ab88f40f6 100644 --- a/mso-api-handlers/mso-api-handler-infra/src/test/java/org/onap/so/apihandlerinfra/WorkflowSpecificationsHandlerTest.java +++ b/mso-api-handlers/mso-api-handler-infra/src/test/java/org/onap/so/apihandlerinfra/WorkflowSpecificationsHandlerTest.java @@ -375,7 +375,7 @@ public class WorkflowSpecificationsHandlerTest extends BaseTest { headers.set("Content-Type", MediaType.APPLICATION_JSON); HttpEntity<String> entity = new HttpEntity(null, headers); - wireMockServer.stubFor(get(urlMatching("/workflow/search/findByResourceTarget[?]resource_target=pnf")) + wireMockServer.stubFor(get(urlMatching("/workflow/search/findByResourceTarget[?]resourceTarget=pnf")) .willReturn(aResponse().withHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON) .withBody( getWiremockResponseForCatalogdb("WorkflowSpecificationsForPnfWorkflows_Response.json")) |