diff --git a/test/sdk-package-test/cluster.test.ts b/test/sdk-package-test/cluster.test.ts index 386a336..385107b 100755 --- a/test/sdk-package-test/cluster.test.ts +++ b/test/sdk-package-test/cluster.test.ts @@ -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();