From cc6ad7f00f76514849fe2ace8fb6d30e51e37dab Mon Sep 17 00:00:00 2001 From: Stephen Adamson Date: Sun, 5 Jul 2026 20:08:12 +0100 Subject: [PATCH] fix: remove t.Parallel from VAT lifecycle test Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- backend/handlers/payments/vat_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/handlers/payments/vat_test.go b/backend/handlers/payments/vat_test.go index 18dae13..ad791fa 100644 --- a/backend/handlers/payments/vat_test.go +++ b/backend/handlers/payments/vat_test.go @@ -2935,7 +2935,6 @@ func TestApplyVATToBookingPayment_OnTheHouse_Skip(t *testing.T) { // subsequent payments from having VAT applied, and that PaymentSummary only // reflects VAT from payments made while VAT was enabled. func TestVAT_DisableVATRegistration_Lifecycle(t *testing.T) { - t.Parallel() ctx, tx := testutils.SetupTestTx(t) _, err := tx.Exec(ctx, `UPDATE business_settings SET is_vat_registered = TRUE, default_vat_rate = 20.00`)