mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
fix newly introduced errors
This commit is contained in:
parent
827c829306
commit
19adc53ed7
@ -56,7 +56,7 @@ export class Contribution {
|
|||||||
@Field(() => Date, { nullable: true })
|
@Field(() => Date, { nullable: true })
|
||||||
deletedAt: Date | null
|
deletedAt: Date | null
|
||||||
|
|
||||||
@Field(() => Number, { nullable: true })
|
@Field(() => Int, { nullable: true })
|
||||||
deletedBy: number | null
|
deletedBy: number | null
|
||||||
|
|
||||||
@Field(() => Date)
|
@Field(() => Date)
|
||||||
|
|||||||
@ -825,7 +825,7 @@ describe('ContributionResolver', () => {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('calls sendContributionDeniedEmail', async () => {
|
it('calls sendContributionDeniedEmail', () => {
|
||||||
expect(sendContributionDeniedEmail).toBeCalledWith({
|
expect(sendContributionDeniedEmail).toBeCalledWith({
|
||||||
firstName: 'Bibi',
|
firstName: 'Bibi',
|
||||||
lastName: 'Bloxberg',
|
lastName: 'Bloxberg',
|
||||||
@ -2391,7 +2391,7 @@ describe('ContributionResolver', () => {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('calls sendContributionDeletedEmail', async () => {
|
it('calls sendContributionDeletedEmail', () => {
|
||||||
expect(sendContributionDeletedEmail).toBeCalledWith({
|
expect(sendContributionDeletedEmail).toBeCalledWith({
|
||||||
firstName: 'Peter',
|
firstName: 'Peter',
|
||||||
lastName: 'Lustig',
|
lastName: 'Lustig',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user