diff options
author | Sourabh Sourabh <sourabh.sourabh@est.tech> | 2024-09-17 09:16:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-09-17 09:16:08 +0000 |
commit | 03d2e8607ecfa0502ea93335243c56752ee66f92 (patch) | |
tree | f98efaac373d9cbf0e4b4e97bb4aed24ed70571e /integration-test/src/test/groovy | |
parent | 3cf653576440e233d195e2e54851aec833ee9922 (diff) | |
parent | 6191d41c8d8ee20f0388172faf57e2bf8bbf8862 (diff) |
Merge "Policy Executor API: Add Prefix in Yaml"
Diffstat (limited to 'integration-test/src/test/groovy')
-rw-r--r-- | integration-test/src/test/groovy/org/onap/cps/integration/base/PolicyDispatcher.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/base/PolicyDispatcher.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/base/PolicyDispatcher.groovy index 27e7563e61..69792d7ed8 100644 --- a/integration-test/src/test/groovy/org/onap/cps/integration/base/PolicyDispatcher.groovy +++ b/integration-test/src/test/groovy/org/onap/cps/integration/base/PolicyDispatcher.groovy @@ -45,7 +45,7 @@ class PolicyDispatcher extends Dispatcher { return new MockResponse().setResponseCode(401) } - if (recordedRequest.path != '/v1/execute') { + if (recordedRequest.path != '/policy-executor/api/v1/execute') { return new MockResponse().setResponseCode(400) } |