diff options
author | Daniel Hanrahan <daniel.hanrahan@est.tech> | 2024-07-19 10:02:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-07-19 10:02:29 +0000 |
commit | fc3a4c1b4aa2d953bc780301fbe784daf448c076 (patch) | |
tree | 39dd134cf363ce2afd701dec4de52c88def5fb1f /cps-service | |
parent | dbe7b6675c05a512f50a8282af1eb8edd811fce6 (diff) | |
parent | 13998987c57a8ace243725a49d7ce55bcaf34f16 (diff) |
Merge "Integration test to validate DMI service URL"
Diffstat (limited to 'cps-service')
-rw-r--r-- | cps-service/src/test/groovy/org/onap/cps/utils/JsonObjectMapperSpec.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cps-service/src/test/groovy/org/onap/cps/utils/JsonObjectMapperSpec.groovy b/cps-service/src/test/groovy/org/onap/cps/utils/JsonObjectMapperSpec.groovy index 8cbd493550..09d45b92c0 100644 --- a/cps-service/src/test/groovy/org/onap/cps/utils/JsonObjectMapperSpec.groovy +++ b/cps-service/src/test/groovy/org/onap/cps/utils/JsonObjectMapperSpec.groovy @@ -42,7 +42,7 @@ class JsonObjectMapperSpec extends Specification { def contentMap = new JsonSlurper().parseText(new String(content)) and: 'the parsed content is as expected' assert contentMap.'test:bookstore'.'bookstore-name' == 'Chapters/Easons' - where: 'the following data stores are used' + where: 'the following content types are used' type << ['String', 'bytes'] } |