summaryrefslogtreecommitdiffstats
path: root/integration-test
diff options
context:
space:
mode:
authorLuke Gleeson <luke.gleeson@est.tech>2023-04-28 13:59:06 +0000
committerGerrit Code Review <gerrit@onap.org>2023-04-28 13:59:06 +0000
commit5f964d1910e309502530631bff4d21e5d59f4dc8 (patch)
tree5a9a76f7e67938fc2851f5d1e0612841d100ecee /integration-test
parent3c0ea89e2bd77d2f4f86f0729643455e1b29c5ac (diff)
parent94b5c8a94dc738576ee7cb8b71d9bd6e43fbac24 (diff)
Merge "Add document for support for contains condition to cps-path"
Diffstat (limited to 'integration-test')
-rw-r--r--integration-test/src/test/groovy/org/onap/cps/integration/functional/CpsQueryServiceIntegrationSpec.groovy1
1 files changed, 0 insertions, 1 deletions
diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/functional/CpsQueryServiceIntegrationSpec.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/functional/CpsQueryServiceIntegrationSpec.groovy
index d8f714757..a04302fa6 100644
--- a/integration-test/src/test/groovy/org/onap/cps/integration/functional/CpsQueryServiceIntegrationSpec.groovy
+++ b/integration-test/src/test/groovy/org/onap/cps/integration/functional/CpsQueryServiceIntegrationSpec.groovy
@@ -61,7 +61,6 @@ class CpsQueryServiceIntegrationSpec extends FunctionalSpecBase {
assert result.size() == expectedResultSize
and: 'the cps-path of queryDataNodes has the expectedLeaves'
assert result.leaves.sort() == expectedLeaves.sort()
- println(expectedLeaves.toArray())
where: 'the following data is used'
scenario | cpspath || expectedResultSize | expectedLeaves
'the "OR" condition' | '//books[@lang="English" or @price=15]' || 6 | [[lang: "English", price: 15, title: "Annihilation", authors: ["Jeff VanderMeer"], editions: [2014]],