Skip to content

Commit

Permalink
test: relaxe limits
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-pousette committed Dec 28, 2024
1 parent 8259b95 commit a97d78a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/programs/data/shared-log/test/sharding.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1097,10 +1097,10 @@ testSetups.forEach((setup) => {
async () => {
expect(
await db1.log.calculateMyTotalParticipation(),
).to.be.within(0.43, 0.57);
).to.be.within(0.42, 0.58);
expect(
await db2.log.calculateMyTotalParticipation(),
).to.be.within(0.43, 0.57);
).to.be.within(0.42, 0.58);
},
{ timeout: 20 * 1000 },
);
Expand Down

0 comments on commit a97d78a

Please sign in to comment.