diff options
author | 2025-02-12 12:31:59 +0000 | |
---|---|---|
committer | 2025-02-12 12:31:59 +0000 | |
commit | ee4e49556be15ef5f881403f1cd70fab8daa68f4 (patch) | |
tree | fbe7b7d14c51a8c9bfb166efd877ca3e6d3f19b5 /integration-test/src/test | |
parent | d2b635356141166c2ea05b79a5a96da31c909764 (diff) | |
parent | 743b2b01ddf44aca499ade1ac5a8fccf80ce3b5e (diff) |
Merge "Change Datajob Status return value"
Diffstat (limited to 'integration-test/src/test')
-rw-r--r-- | integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/DataJobStatusServiceSpec.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/DataJobStatusServiceSpec.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/DataJobStatusServiceSpec.groovy index 6e5c0e40c2..162b51844c 100644 --- a/integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/DataJobStatusServiceSpec.groovy +++ b/integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/DataJobStatusServiceSpec.groovy @@ -18,6 +18,6 @@ class DataJobStatusServiceSpec extends CpsIntegrationSpecBase { when: 'the data job status checked' def result = dataJobStatusService.getDataJobStatus(authorization, dmiServiceName, dataProducerId, dataProducerJobId) then: 'the status is that defined in the mock service.' - assert result == 'status details from mock service' + assert result == '{"status":"status details from mock service"}' } } |