Skip to content

Commit

Permalink
test: fix ETHDistributed checks
Browse files Browse the repository at this point in the history
  • Loading branch information
folkyatina committed Jan 19, 2025
1 parent 28139c8 commit 0deab08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/accounting.integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ describe("Integration: Accounting", () => {
expect(sharesRateAfter).to.be.greaterThan(sharesRateBefore, "Shares rate has not increased");

const ethDistributedEvent = ctx.getEvents(reportTxReceipt, "ETHDistributed");
expect(ethDistributedEvent[0].args.principalCLBalance + rebaseAmount).to.equal(
expect(ethDistributedEvent[0].args.preClBalance + rebaseAmount).to.equal(
ethDistributedEvent[0].args.postCLBalance,
"ETHDistributed: CL balance has not increased",
);
Expand Down

0 comments on commit 0deab08

Please sign in to comment.