From ec4b87b949aa1c33565dccf41741316a30442592 Mon Sep 17 00:00:00 2001 From: Alexander Eichhorn Date: Tue, 14 Apr 2026 01:39:04 +0200 Subject: [PATCH] add missing parameter --- tests/app/routers/test_multiuser_authorization.py | 1 + tests/app/routers/test_workflows_multiuser.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/app/routers/test_multiuser_authorization.py b/tests/app/routers/test_multiuser_authorization.py index e9efae7034..85354c6a57 100644 --- a/tests/app/routers/test_multiuser_authorization.py +++ b/tests/app/routers/test_multiuser_authorization.py @@ -115,6 +115,7 @@ def mock_services() -> InvocationServices: model_relationships=None, # type: ignore client_state_persistence=ClientStatePersistenceSqlite(db=db), users=UserService(db), + external_generation=None, # type: ignore ) diff --git a/tests/app/routers/test_workflows_multiuser.py b/tests/app/routers/test_workflows_multiuser.py index 28b301e18e..5ec97fbb7c 100644 --- a/tests/app/routers/test_workflows_multiuser.py +++ b/tests/app/routers/test_workflows_multiuser.py @@ -106,6 +106,7 @@ def mock_services() -> InvocationServices: model_relationships=None, # type: ignore client_state_persistence=ClientStatePersistenceSqlite(db=db), users=UserService(db), + external_generation=None, # type: ignore )