This commit is contained in:
Ulf Gebhardt 2023-02-07 16:48:08 +01:00
parent 8eaacc6699
commit ea1f637bb2
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -1769,7 +1769,9 @@ describe('ContributionResolver', () => {
it('logs the error thrown', () => {
expect(logger.error).toBeCalledWith(
'The amount to be created exceeds the amount still available for this month', new Decimal(2000), new Decimal(1000)
'The amount to be created exceeds the amount still available for this month',
new Decimal(2000),
new Decimal(1000),
)
})
})
@ -1817,7 +1819,9 @@ describe('ContributionResolver', () => {
it('logs the error thrown', () => {
expect(logger.error).toBeCalledWith(
'The amount to be created exceeds the amount still available for this month', new Decimal(1000), new Decimal(800)
'The amount to be created exceeds the amount still available for this month',
new Decimal(1000),
new Decimal(800),
)
})
})
@ -2019,7 +2023,9 @@ describe('ContributionResolver', () => {
it('logs the error thrown', () => {
expect(logger.error).toBeCalledWith(
'The amount to be created exceeds the amount still available for this month', new Decimal(1900), new Decimal(1000)
'The amount to be created exceeds the amount still available for this month',
new Decimal(1900),
new Decimal(1000),
)
})
})