From 3a3977051e6372f921e489a8bb85a8f494e3ec1b Mon Sep 17 00:00:00 2001 From: Garrick Date: Wed, 25 Mar 2026 10:37:08 -0700 Subject: [PATCH] test: allow social analyst kwargs in factor rules graph fixture --- tests/test_factor_rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_factor_rules.py b/tests/test_factor_rules.py index d40dfb5d..78d45508 100644 --- a/tests/test_factor_rules.py +++ b/tests/test_factor_rules.py @@ -78,7 +78,7 @@ class RecordingLLM: def make_factory(recorded_llms, node_name): - def factory(llm, *_args): + def factory(llm, *_args, **_kwargs): recorded_llms[node_name] = llm return node_name