From bc0b44980ae56f3aaa8bb1914ed6ec0a4b8f0e43 Mon Sep 17 00:00:00 2001 From: Luiz Gustavo Abou Hatem De Liz Date: Tue, 30 Jan 2024 17:46:01 -0300 Subject: [PATCH] Removing "OrEqual" from the tests; --- balancer-js/src/modules/pools/apr/apr.integration.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 68cbbd6eb..b48099287 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.greaterThanOrEqual(1); + expect(apr.protocolApr).to.be.greaterThan(1); } else { throw 'no pool found'; } @@ -65,7 +65,7 @@ describe('APR tests', () => { const pool = await pools.find(auraBALveBAL); if (pool) { const apr = await pools.apr(pool); - expect(apr.tokenAprs.total).to.be.greaterThanOrEqual(1); + expect(apr.tokenAprs.total).to.be.greaterThan(1); } else { throw 'no pool found'; }