From d2f33932c0f6a2662e6bf588d08a8c7d43c6b074 Mon Sep 17 00:00:00 2001 From: Mathias Fredriksson Date: Wed, 25 Feb 2026 13:14:32 +0200 Subject: [PATCH] test(coderd): remove provisioner daemon from SendToNonActiveStates test (#22298) This change a test flake triggered disabling the provisioner daemon that was modifying jobs created by dbgen. Fixes coder/internal#1367 --- coderd/aitasks_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coderd/aitasks_test.go b/coderd/aitasks_test.go index e841713ce8..b16b2345f0 100644 --- a/coderd/aitasks_test.go +++ b/coderd/aitasks_test.go @@ -832,7 +832,7 @@ func TestTasks(t *testing.T) { t.Run("SendToNonActiveStates", func(t *testing.T) { t.Parallel() - client, db := coderdtest.NewWithDatabase(t, &coderdtest.Options{IncludeProvisionerDaemon: true}) + client, db := coderdtest.NewWithDatabase(t, &coderdtest.Options{}) owner := coderdtest.CreateFirstUser(t, client) ctx := testutil.Context(t, testutil.WaitMedium)