Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeHackett12 committed Oct 22, 2024
1 parent 5011ad3 commit b1aa73b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/sdk-package-test/cluster.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,12 @@ describe('Cluster Definition', () => {

const res = await client.getOWRTranches(withdrawal_address);

expect(res.principalRecipient).toEqual(principalRecipient.toLowerCase());
expect(res.rewardRecipient).toEqual(fee_recipient_address.toLowerCase());
expect(res.principalRecipient.toLowerCase()).toEqual(
principalRecipient.toLowerCase(),
);
expect(res.rewardRecipient.toLowerCase()).toEqual(
fee_recipient_address.toLowerCase(),
);
expect(res.amountOfPrincipalStake).toEqual(BigInt(32000000000000000000));
});

Expand Down

0 comments on commit b1aa73b

Please sign in to comment.