Skip to content

Commit

Permalink
Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstph-dvx committed Sep 24, 2024
1 parent e985c18 commit f696601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/arbGasInfo.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('ArbGasInfo Getters', () => {
});
it('getParentBaseFeeEstimate successfully fetches parent base fee estimate', async () => {
const result = await getParentBaseFeeEstimate(client);
expect(Number(result)).gt(0);
expect(Number(result)).gte(0);
});
it('getParentRewardRate successfully fetches parent reward rate', async () => {
const result = await getParentRewardRate(client);
Expand Down

0 comments on commit f696601

Please sign in to comment.