diff --git a/cmd/server/tests/test_helpers_test.go b/cmd/server/tests/test_helpers_test.go index 2f93ae7..03ecbe5 100644 --- a/cmd/server/tests/test_helpers_test.go +++ b/cmd/server/tests/test_helpers_test.go @@ -463,6 +463,7 @@ func setupTestServer(t *testing.T) *TestServerSetup { analyticsHandler := handlers.NewAnalyticsHandler(queries) queueHandler := handlers.NewQueueHandler(queries, queueProcessor) systemSettingsHandler := handlers.NewSystemSettingsHandler(queries) + processingIssuesHandler := handlers.NewProcessingIssuesHandler(queries) // Create refactored handlers (matching main.go) libraryService := services.NewLibraryService(queries) @@ -518,6 +519,7 @@ func setupTestServer(t *testing.T) *TestServerSetup { AnalyticsHandler: analyticsHandler, QueueHandler: queueHandler, SystemSettingsHandler: systemSettingsHandler, + ProcessingIssuesHandler: processingIssuesHandler, CollectionHandler: collectionHandler, FiltersHandler: filtersHandler, DashboardHandler: dashboardHandler,