Skip to content

Commit

Permalink
fix: test syntax replace stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ohager committed Sep 8, 2024
1 parent 6be8c4f commit 8238d8c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('getRecipientAmountsFromMultiOutPayment', () => {
transaction: '123',
type: TransactionType.Payment,
subtype: TransactionPaymentSubtype.MultiOut,
attachment: {'version.MultiOutCreation': 1, recipients: {@link '123', 'amountA'], ['456', 'amountB'}}
attachment: {'version.MultiOutCreation': 1, recipients: [['123', 'amountA'], ['456', 'amountB']]}
};

// @ts-ignore
Expand All @@ -62,7 +62,7 @@ describe('getRecipientAmountsFromMultiOutPayment', () => {
const transaction = {
transaction: '123',
type: TransactionType.Arbitrary,
attachment: {'version.MultiOutCreation': 1, recipients: {@link '123', 'ammountA'], ['456', 'amountB'}}
attachment: {'version.MultiOutCreation': 1, recipients: [['123', 'ammountA'], ['456', 'amountB']]}
};

try {
Expand All @@ -79,7 +79,7 @@ describe('getRecipientAmountsFromMultiOutPayment', () => {
transaction: '123',
type: TransactionType.Payment,
subtype: TransactionPaymentSubtype.Ordinary,
attachment: {'version.MultiOutCreation': 1, recipients: {@link '123', 'ammountA'], ['456', 'amountB'}}
attachment: {'version.MultiOutCreation': 1, recipients: [['123', 'ammountA'], ['456', 'amountB']]}
};

try {
Expand Down

0 comments on commit 8238d8c

Please sign in to comment.