Skip to content

Commit

Permalink
style: fix some linting errors in cbc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MMichotte committed Sep 9, 2024
1 parent 892018e commit f2d1e9b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/app-gocardless/banks/tests/cbc_cregbebb.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ describe('cbc_cregbebb', () => {
transaction,
true,
);
expect(normalizedTransaction.payeeName).toEqual(
'ONKART FR Viry',
);
expect(normalizedTransaction.payeeName).toEqual('ONKART FR Viry');
});

it('returns the debtorName as payeeName when the amount is positive', () => {
Expand All @@ -28,9 +26,7 @@ describe('cbc_cregbebb', () => {
transaction,
true,
);
expect(normalizedTransaction.payeeName).toEqual(
'ONKART FR Viry',
);
expect(normalizedTransaction.payeeName).toEqual('ONKART FR Viry');
});
});
});

0 comments on commit f2d1e9b

Please sign in to comment.