This commit is contained in:
Ahmed Bouhuolia
2026-01-15 22:04:42 +02:00
parent 3c1273becb
commit 2bbc154f18
34 changed files with 301 additions and 176 deletions

View File

@@ -22,9 +22,9 @@ describe('Banking Matching (e2e)', () => {
.expect(200);
});
it('/banking/matching/unmatch/:uncategorizedTransactionId (POST)', () => {
it('/banking/matching/unmatch/:uncategorizedTransactionId (PATCH)', () => {
return request(app.getHttpServer())
.post('/banking/matching/unmatch/1')
.patch('/banking/matching/unmatch/1')
.set('organization-id', orgainzationId)
.set('Authorization', AuthorizationHeader)
.expect(200);