mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
linting
This commit is contained in:
parent
8eaacc6699
commit
ea1f637bb2
@ -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),
|
||||
)
|
||||
})
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user