summaryrefslogtreecommitdiffstats
path: root/cps-ri/src
diff options
context:
space:
mode:
Diffstat (limited to 'cps-ri/src')
-rw-r--r--cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy b/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy
index c36de9aaa..5b2802813 100644
--- a/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy
+++ b/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy
@@ -54,8 +54,8 @@ class CpsToDataNodePerfSpec extends CpsPersistenceSpecBase {
def readDurationInMillis = readStopWatch.getTime()
then : 'setup duration is under 8 seconds'
assert setupDurationInMillis < 8000
- and: 'read duration is under 3.5 seconds'
- assert readDurationInMillis < 3500
+ and: 'read duration is under 6 seconds'
+ assert readDurationInMillis < 6000
and: 'data node is returned with all the descendants populated'
assert countDataNodes(result) == 1533
}