Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeHackett12 committed Oct 22, 2024
1 parent 1fa143d commit 5011ad3
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions test/sdk-package-test/cluster.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,18 +189,12 @@ describe('Cluster Definition', () => {
controllerAddress: principalRecipient,
});

const res = await client.getOWRTranches(
withdrawal_address,
);
const res = await client.getOWRTranches(withdrawal_address);

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

it('should deploy OWR and Splitter with a controller address and a distributorFee', async () => {
const signerAddress = await randomSigner.getAddress();
Expand Down

0 comments on commit 5011ad3

Please sign in to comment.