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:
shankar0123
2026-03-15 12:01:36 -04:00
parent 90d26f707f
commit 11a5ca6135
+1 -1
View File
@@ -69,7 +69,7 @@ func TestCertificateLifecycle(t *testing.T) {
ownerHandler := handler.NewOwnerHandler(&mockOwnerService{}) ownerHandler := handler.NewOwnerHandler(&mockOwnerService{})
auditHandler := handler.NewAuditHandler(auditService) auditHandler := handler.NewAuditHandler(auditService)
notificationHandler := handler.NewNotificationHandler(notificationService) notificationHandler := handler.NewNotificationHandler(notificationService)
healthHandler := handler.NewHealthHandler() healthHandler := handler.NewHealthHandler("none")
// Create router and register handlers // Create router and register handlers
r := router.New() r := router.New()