From 34aba319f19853a68e15ecec2868e93a6096273c Mon Sep 17 00:00:00 2001 From: Stephen Adamson Date: Mon, 22 Jun 2026 12:55:24 +0100 Subject: [PATCH] test(admin): add t.Parallel() to exceptional hours test Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- backend/handlers/admin/today_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/handlers/admin/today_test.go b/backend/handlers/admin/today_test.go index 7eb5c55..ae8dce0 100644 --- a/backend/handlers/admin/today_test.go +++ b/backend/handlers/admin/today_test.go @@ -820,6 +820,7 @@ func TestAdminToday_WeekSummary_TomorrowClosed(t *testing.T) { // a closed day, even when default working_hours says today is open. // This tests the column name fix: monday_week_start → week_start. func TestAdminToday_ExceptionalHours_ClosedDay(t *testing.T) { + t.Parallel() ctx, tx := testutils.SetupTestTx(t) now := time.Now() todayStart := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())