diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2023-04-25 15:22:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-04-25 15:22:20 +0000 |
commit | ccf2e5abd0a1eec25f90fa6f89ed3766fc9c068f (patch) | |
tree | 1150a9193eb21b065c282a5dda55e53e818aefb1 /cps-ri/src/test | |
parent | d64fa3440d5ed07aa3f35573cfaec5825f002811 (diff) | |
parent | 796c4dcf56a1aafc58773bedc82ddef5242a108c (diff) |
Merge "Remove 32K limit from queries with collection parameters"
Diffstat (limited to 'cps-ri/src/test')
-rw-r--r-- | cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsModulePersistenceServiceSpec.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsModulePersistenceServiceSpec.groovy b/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsModulePersistenceServiceSpec.groovy index 9ef9732681..811c3290b9 100644 --- a/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsModulePersistenceServiceSpec.groovy +++ b/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsModulePersistenceServiceSpec.groovy @@ -84,7 +84,7 @@ class CpsModulePersistenceServiceSpec extends Specification { def 'Store schema set error scenario: #scenario.'() { given: 'no yang resource are currently saved' - yangResourceRepositoryMock.findAllByChecksumIn(_) >> Collections.emptyList() + yangResourceRepositoryMock.findAllByChecksumIn(_ as Collection<String>) >> Collections.emptyList() and: 'persisting yang resource raises db constraint exception (in case of concurrent requests for example)' yangResourceRepositoryMock.saveAll(_) >> { throw dbException } when: 'attempt to store schema set ' |