diff --git a/backend/internal/ws/handler_test.go b/backend/internal/ws/handler_test.go index 552617c..72cd50c 100644 --- a/backend/internal/ws/handler_test.go +++ b/backend/internal/ws/handler_test.go @@ -148,7 +148,7 @@ func setupTestServer(t *testing.T, orch orchestrator.Orchestrator) (*httptest.Se Server: config.ServerConfig{HeartbeatInterval: 30, HeartbeatTimeout: 60}, Session: config.SessionConfig{MaxHistory: 20}, } - r.GET("/ws", ServeWS(sessionMgr, orch, cfg, tokenMgr, nil)) + r.GET("/ws", ServeWS(sessionMgr, orch, cfg, tokenMgr, nil, nil)) srv := httptest.NewServer(r) @@ -591,7 +591,7 @@ func setupTestServerEx(t *testing.T, orch orchestrator.Orchestrator) (*httptest. Server: config.ServerConfig{HeartbeatInterval: 30, HeartbeatTimeout: 60}, Session: config.SessionConfig{MaxHistory: 20}, } - r.GET("/ws", ServeWS(sessionMgr, orch, cfg, tokenMgr, nil)) + r.GET("/ws", ServeWS(sessionMgr, orch, cfg, tokenMgr, nil, nil)) srv := httptest.NewServer(r) return srv, tokenMgr, sessionMgr