From 0bfbda512d8f150b26bb0a00dceeae0c16931c00 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Thu, 25 May 2023 01:21:15 +1000 Subject: [PATCH] build(nodes): remove references to metadata service in tests --- tests/nodes/test_graph_execution_state.py | 1 - tests/nodes/test_invoker.py | 1 - 2 files changed, 2 deletions(-) diff --git a/tests/nodes/test_graph_execution_state.py b/tests/nodes/test_graph_execution_state.py index 3c262cf88e..d4631ec735 100644 --- a/tests/nodes/test_graph_execution_state.py +++ b/tests/nodes/test_graph_execution_state.py @@ -28,7 +28,6 @@ def mock_services(): logger = None, # type: ignore images = None, # type: ignore latents = None, # type: ignore - metadata = None, # type: ignore queue = MemoryInvocationQueue(), graph_library=SqliteItemStorage[LibraryGraph]( filename=sqlite_memory, table_name="graphs" diff --git a/tests/nodes/test_invoker.py b/tests/nodes/test_invoker.py index 66c6b94d6f..80ed427485 100644 --- a/tests/nodes/test_invoker.py +++ b/tests/nodes/test_invoker.py @@ -26,7 +26,6 @@ def mock_services() -> InvocationServices: logger = None, # type: ignore images = None, # type: ignore latents = None, # type: ignore - metadata = None, # type: ignore queue = MemoryInvocationQueue(), graph_library=SqliteItemStorage[LibraryGraph]( filename=sqlite_memory, table_name="graphs"