diff --git a/balancer-js/src/modules/pools/apr/apr.integration.spec.ts b/balancer-js/src/modules/pools/apr/apr.integration.spec.ts index b48099287..e66cbbaa8 100644 --- a/balancer-js/src/modules/pools/apr/apr.integration.spec.ts +++ b/balancer-js/src/modules/pools/apr/apr.integration.spec.ts @@ -53,7 +53,7 @@ describe('APR tests', () => { const pool = await pools.find(veBalId); if (pool) { const apr = await pools.apr(pool); - expect(apr.protocolApr).to.be.greaterThan(1); + expect(apr.protocolApr).to.be.greaterThanOrEqual(1); } else { throw 'no pool found'; } @@ -65,6 +65,7 @@ describe('APR tests', () => { const pool = await pools.find(auraBALveBAL); if (pool) { const apr = await pools.apr(pool); + console.log(apr); expect(apr.tokenAprs.total).to.be.greaterThan(1); } else { throw 'no pool found';