Skip to content

Commit a6d94ee

Browse files
committed
✅ rewards: fix hardhat test
1 parent 6eef70d commit a6d94ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/hardhat/19_rewards_controller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe("RewardsController", function () {
4242
});
4343

4444
it("THEN the claimable amount is positive", async () => {
45-
const claimableBalance = await rewardsController["allClaimable(address, address)"](alice.address, op.target);
45+
const claimableBalance = await rewardsController["allClaimable(address,address)"](alice.address, op.target);
4646
await rewardsController["claim((address,bool[])[],address,address[])"](
4747
[{ market: marketUSDC.target, operations: [false, true] }],
4848
alice.address,
@@ -68,7 +68,7 @@ describe("RewardsController", function () {
6868
});
6969

7070
it("AND calling allClaimable with invalid reward asset THEN the claimable amount is 0", async () => {
71-
expect(await rewardsController["allClaimable(address, address)"](alice.address, alice.address)).to.be.eq(0);
71+
expect(await rewardsController["allClaimable(address,address)"](alice.address, alice.address)).to.be.eq(0);
7272
});
7373

7474
it("AND setting a keeper enables claiming on behalf of an account", async () => {

0 commit comments

Comments
 (0)