From 16488e7db881b82f25e42dcc81e8288d5152047d Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Sat, 29 Apr 2023 10:59:50 -0400 Subject: [PATCH] fix tests --- tests/nodes/test_graph_execution_state.py | 1 + tests/nodes/test_invoker.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/nodes/test_graph_execution_state.py b/tests/nodes/test_graph_execution_state.py index 2476786e41..3c262cf88e 100644 --- a/tests/nodes/test_graph_execution_state.py +++ b/tests/nodes/test_graph_execution_state.py @@ -25,6 +25,7 @@ def mock_services(): return InvocationServices( model_manager = None, # type: ignore events = None, # type: ignore + logger = None, # type: ignore images = None, # type: ignore latents = None, # type: ignore metadata = None, # type: ignore diff --git a/tests/nodes/test_invoker.py b/tests/nodes/test_invoker.py index d187c1b171..66c6b94d6f 100644 --- a/tests/nodes/test_invoker.py +++ b/tests/nodes/test_invoker.py @@ -23,6 +23,7 @@ def mock_services() -> InvocationServices: return InvocationServices( model_manager = None, # type: ignore events = TestEventService(), + logger = None, # type: ignore images = None, # type: ignore latents = None, # type: ignore metadata = None, # type: ignore