Skip to content

Commit

Permalink
chore: typo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
idea404 committed Nov 13, 2023
1 parent bb5002c commit eb91f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe("Account Abstraction Tests", function () {
).wait();
const balance = (await provider.getBalance(firstRichWallet.address)).toBigInt();
const difference = balance - balanceBefore;
// expect to be slightly higher than 5
// expect to be about 10
expect(difference / BigInt(10 ** 18) > 9.9).to.be.true;
expect(difference / BigInt(10 ** 18) < 10.1).to.be.true;
});
Expand Down

0 comments on commit eb91f77

Please sign in to comment.