From 9be20b4274a0324eebdabdc2bb5dd79aa90f783f Mon Sep 17 00:00:00 2001 From: Mattsson <111893710+mattssonn@users.noreply.github.com> Date: Thu, 13 Aug 2026 15:54:31 +0200 Subject: [PATCH] test(bookkeeping): use hotel account in VAT fixture (#1587) --- lib/bookkeeping/__tests__/template-library.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bookkeeping/__tests__/template-library.test.ts b/lib/bookkeeping/__tests__/template-library.test.ts index 65ddc83d..43ed94ba 100644 --- a/lib/bookkeeping/__tests__/template-library.test.ts +++ b/lib/bookkeeping/__tests__/template-library.test.ts @@ -225,9 +225,9 @@ describe('deriveTemplateLinesFromBooking', () => { }) it('snaps a 12% VAT line to the reduced rate', () => { - // Hotel: 5820 net 1000, 2641 VAT 120, 1930 gross 1120. + // Hotel: 5830 net 1000, 2641 VAT 120, 1930 gross 1120. const lines = deriveTemplateLinesFromBooking([ - { account_number: '5820', debit_amount: '1000', credit_amount: '' }, + { account_number: '5830', debit_amount: '1000', credit_amount: '' }, { account_number: '2641', debit_amount: '120', credit_amount: '' }, { account_number: '1930', debit_amount: '', credit_amount: '1120' }, ])