From 0c80d52573c13fb826d182fc392fc4453fbd4e20 Mon Sep 17 00:00:00 2001 From: Heatherm Huang Date: Tue, 14 Jul 2026 15:08:24 +0800 Subject: [PATCH] test(grok): wire reconciliation in import probe fixture --- .../internal/handler/admin/grok_import_probe_handler_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/internal/handler/admin/grok_import_probe_handler_test.go b/backend/internal/handler/admin/grok_import_probe_handler_test.go index 489a13ae6d..bc8c3f3f6a 100644 --- a/backend/internal/handler/admin/grok_import_probe_handler_test.go +++ b/backend/internal/handler/admin/grok_import_probe_handler_test.go @@ -73,7 +73,7 @@ func TestGrokSSOBatchImportKeepsCreatedAccountsWhenOneAutomaticProbeFails(t *tes defer oauthService.Stop() prober := newGrokImportProbeStub(3) prober.failures[502] = infraerrors.New(502, "GROK_TEST_PROBE_FAILED", "sensitive-upstream-body") - handler := NewGrokOAuthHandler(oauthService, adminService, nil) + handler := NewGrokOAuthHandler(oauthService, adminService, nil, nil) handler.importProber = prober router := gin.New()