Skip to content

Commit

Permalink
fix: review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
howydev committed Dec 19, 2024
1 parent 5ccb5a4 commit 5f23c26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions account-kit/smart-contracts/src/ma-v2/client/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe("MA v2 Tests", async () => {

await provider.waitForUserOperationTransaction(result);

await expect(await getTargetBalance()).toEqual(
await expect(getTargetBalance()).resolves.toEqual(
startingAddressBalance + sendAmount
);
});
Expand Down Expand Up @@ -114,7 +114,7 @@ describe("MA v2 Tests", async () => {

txnHash = sessionKeyClient.waitForUserOperationTransaction(result);
await expect(txnHash).resolves.not.toThrowError();
await expect(await getTargetBalance()).toEqual(
await expect(getTargetBalance()).resolves.toEqual(
startingAddressBalance + sendAmount
);
});
Expand Down

0 comments on commit 5f23c26

Please sign in to comment.