Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pblivin0x committed Jun 20, 2024
1 parent e7a8a8c commit 67bc64a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/adapters/prtFeeSplitExtension.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,12 @@ describe("PrtFeeSplitExtension", () => {
});

it("should not send fees to the PRT Staking Pool", async () => {
const preMethodologistBalance = await setToken.balanceOf(methodologist.address);
const preStakingPoolBalance = await setToken.balanceOf(prtStakingPool.address);

await subject();

const postMethodologistBalance = await setToken.balanceOf(methodologist.address);
expect(postMethodologistBalance.sub(preMethodologistBalance)).to.eq(ZERO);
const postStakingPoolBalance = await setToken.balanceOf(prtStakingPool.address);
expect(postStakingPoolBalance.sub(preStakingPoolBalance)).to.eq(ZERO);
});
});

Expand Down

0 comments on commit 67bc64a

Please sign in to comment.