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 <noreply@anthropic.com>
This commit is contained in:
Shankar
2026-03-15 12:01:36 -04:00
parent e2160c15d0
commit 4b2e694abe
+1 -1
View File
@@ -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()