Adjusting capacity check again

This commit is contained in:
dougqh 2020-01-30 18:08:49 -05:00
parent 235a6470fb
commit faeb069424
1 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ class CacheProviderTest extends DDSpecification {
then: then:
// cache will start to proactively free slots & size calc is approximate // cache will start to proactively free slots & size calc is approximate
poolStrat.approximateSize() > 0.9 * capacity poolStrat.approximateSize() > 0.8 * capacity
when: when:
10.times { 10.times {
@ -196,7 +196,7 @@ class CacheProviderTest extends DDSpecification {
then: then:
// cache will start to proactively free slots & size calc is approximate // cache will start to proactively free slots & size calc is approximate
poolStrat.approximateSize() > 0.9 * capacity poolStrat.approximateSize() > 0.8 * capacity
} }
static newVoid() { static newVoid() {