From 11a5ca6135c26842565d1b32ca5f51960ab9253e Mon Sep 17 00:00:00 2001 From: shankar0123 Date: Sun, 15 Mar 2026 12:01:36 -0400 Subject: [PATCH] Fix NewHealthHandler call in integration test for M7 signature change Pass "none" auth type to match updated NewHealthHandler(authType string). Co-Authored-By: Claude Opus 4.6 --- internal/integration/lifecycle_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/integration/lifecycle_test.go b/internal/integration/lifecycle_test.go index 104c3bb..17d9105 100644 --- a/internal/integration/lifecycle_test.go +++ b/internal/integration/lifecycle_test.go @@ -69,7 +69,7 @@ func TestCertificateLifecycle(t *testing.T) { ownerHandler := handler.NewOwnerHandler(&mockOwnerService{}) auditHandler := handler.NewAuditHandler(auditService) notificationHandler := handler.NewNotificationHandler(notificationService) - healthHandler := handler.NewHealthHandler() + healthHandler := handler.NewHealthHandler("none") // Create router and register handlers r := router.New()