3476-detele_ticket_bug #837

Merged
joan merged 3 commits from 3476-detele_ticket_bug into dev 2022-01-04 11:17:29 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 8dbd184cce - Show all commits

View File

@ -23,6 +23,6 @@ describe('InvoiceOut download()', () => {
const result = await models.InvoiceOut.download(ctx, invoiceId); const result = await models.InvoiceOut.download(ctx, invoiceId);
expect(result[1]).toEqual('application/pdf'); expect(result[1]).toEqual('application/pdf');
expect(result[2]).toEqual('filename="2021T1111111.pdf"'); expect(result[2]).toMatch(/filename="\d{4}T1111111.pdf"/);
}); });
}); });