summaryrefslogtreecommitdiffstats
path: root/dmi-service/src/test/groovy
diff options
context:
space:
mode:
authorleventecsanyi <levente.csanyi@est.tech>2024-08-05 15:46:59 +0200
committerleventecsanyi <levente.csanyi@est.tech>2024-08-26 12:39:09 +0200
commit658f4d4786b7f7290d91d3d16e99c405c176d686 (patch)
tree51e4bedf47b246baabd3e3e462ff8b924f9a22d9 /dmi-service/src/test/groovy
parent636c228c5d646e7c919bc5ce135fa2967b3fef5a (diff)
Fixed URL for data job result
- fixed opeanapi and stub - updated pnp simulator image Issue-ID: CPS-2296 Signed-off-by: leventecsanyi <levente.csanyi@est.tech> Change-Id: I6654762256097f9deb8ce40cfc8014bed67cb269
Diffstat (limited to 'dmi-service/src/test/groovy')
-rw-r--r--dmi-service/src/test/groovy/org/onap/cps/ncmp/dmi/datajobs/rest/controller/DmiDatajobsRestControllerSpec.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmi-service/src/test/groovy/org/onap/cps/ncmp/dmi/datajobs/rest/controller/DmiDatajobsRestControllerSpec.groovy b/dmi-service/src/test/groovy/org/onap/cps/ncmp/dmi/datajobs/rest/controller/DmiDatajobsRestControllerSpec.groovy
index 17354e65..e2669c46 100644
--- a/dmi-service/src/test/groovy/org/onap/cps/ncmp/dmi/datajobs/rest/controller/DmiDatajobsRestControllerSpec.groovy
+++ b/dmi-service/src/test/groovy/org/onap/cps/ncmp/dmi/datajobs/rest/controller/DmiDatajobsRestControllerSpec.groovy
@@ -82,7 +82,7 @@ class DmiDatajobsRestControllerSpec extends Specification{
def 'get result request should return 501 HTTP Status' () {
given: 'URL to get the result of a data job'
- def getStatus = "${basePathV1}/dataJob/some-identifier/dataProducerJob/some-producer-job-identifier/result?dataProducerId=some-data-producer-identifier&destination=some-destination"
+ def getStatus = "${basePathV1}/cmwriteJob/dataProducer/some-identifier/dataProducerJob/some-producer-job-identifier/result?destination=some-destination"
when: 'the request is performed'
def response = mvc.perform(
get(getStatus)