From 00a45d780517ba7c61a8750f3340f676aee86ca3 Mon Sep 17 00:00:00 2001 From: elweyn Date: Wed, 15 Feb 2023 12:17:17 +0100 Subject: [PATCH] Corrected the expected amount from the ADMIN_CONTRIBUTION_DELETE event. --- backend/src/graphql/resolver/ContributionResolver.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/graphql/resolver/ContributionResolver.test.ts b/backend/src/graphql/resolver/ContributionResolver.test.ts index e41c416ff..93ddb7c83 100644 --- a/backend/src/graphql/resolver/ContributionResolver.test.ts +++ b/backend/src/graphql/resolver/ContributionResolver.test.ts @@ -2569,7 +2569,7 @@ describe('ContributionResolver', () => { expect.objectContaining({ type: EventProtocolType.ADMIN_CONTRIBUTION_DELETE, userId: admin.id, - amount: expect.decimalEqual(400), + amount: expect.decimalEqual(200), }), ) })