diff options
author | 2025-02-14 10:55:20 +0000 | |
---|---|---|
committer | 2025-02-14 10:55:20 +0000 | |
commit | 5d6c7d4739d8665a036ac0b99a6132aef6cdc984 (patch) | |
tree | 61a6b36d85cafea33810ca3a0657886f333dea94 /integration-test/src | |
parent | 61e1c70ebefc59356e8b6bf862ea2ba0b8e4efd9 (diff) | |
parent | c8f8bac31a87d71b7c8622028f89a548f9a89008 (diff) |
Merge "Fix WriteSubJobSpec test to support Windows"
Diffstat (limited to 'integration-test/src')
-rw-r--r-- | integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/WriteSubJobSpec.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/WriteSubJobSpec.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/WriteSubJobSpec.groovy index 5d3ea1919a..46c641cd23 100644 --- a/integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/WriteSubJobSpec.groovy +++ b/integration-test/src/test/groovy/org/onap/cps/integration/functional/ncmp/WriteSubJobSpec.groovy @@ -60,7 +60,7 @@ class WriteSubJobSpec extends CpsIntegrationSpecBase { assert response.size() == 2 assert response[0].class == SubJobWriteResponse.class assert response[0].subJobId == 'some sub job id' - assert response[0].dmiServiceName.startsWith('http://localhost:') + assert response[0].dmiServiceName.startsWith('http://localhost:') || response[0].dmiServiceName().startsWith('http://kubernetes') assert response[0].dataProducerId == 'some data producer id' and: 'dmi 1 received the correct job details' def receivedSubJobsForDispatcher1 = dmiDispatcher1.receivedSubJobs['?destination=d1']['data'].collect() |