From 1ca6c0798fbea52b9ac116bb95581035726760f0 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Mon, 15 Jan 2024 09:37:05 +1100 Subject: [PATCH] tests: fix missing arg for InvocationContext --- tests/aa_nodes/test_graph_execution_state.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/aa_nodes/test_graph_execution_state.py b/tests/aa_nodes/test_graph_execution_state.py index 9cc30e43e1..3577a78ae2 100644 --- a/tests/aa_nodes/test_graph_execution_state.py +++ b/tests/aa_nodes/test_graph_execution_state.py @@ -85,7 +85,15 @@ def invoke_next(g: GraphExecutionState, services: InvocationServices) -> tuple[B print(f"invoking {n.id}: {type(n)}") o = n.invoke( InvocationContext( - conditioning=None, config=None, data=None, images=None, latents=None, logger=None, models=None, util=None + conditioning=None, + config=None, + data=None, + images=None, + latents=None, + logger=None, + models=None, + util=None, + services=None, ) ) g.complete(n.id, o)