Skip to content

Commit

Permalink
Changing from greaterThan to greaterThanOrEqual in apr tests;
Browse files Browse the repository at this point in the history
  • Loading branch information
Luiz Gustavo Abou Hatem De Liz committed Jan 29, 2024
1 parent 84b7e0a commit ce50743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion balancer-js/src/modules/pools/apr/apr.integration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.greaterThan(1);
expect(apr.tokenAprs.total).to.be.greaterThanOrEqual(1);
} else {
throw 'no pool found';
}
Expand Down

0 comments on commit ce50743

Please sign in to comment.