From 8063cd5ed35c9732809401d98e8057f6f9e099dc Mon Sep 17 00:00:00 2001 From: Steven Palma Date: Mon, 15 Sep 2025 22:22:17 +0200 Subject: [PATCH] test(processor): fix batch expectation --- tests/processor/test_batch_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/processor/test_batch_processor.py b/tests/processor/test_batch_processor.py index f51bc3edb..3aee48d1d 100644 --- a/tests/processor/test_batch_processor.py +++ b/tests/processor/test_batch_processor.py @@ -1175,4 +1175,4 @@ def test_task_processing_creates_new_transition(): # The task should be processed correctly (wrapped in list) assert result[TransitionKey.COMPLEMENTARY_DATA]["task"] == ["sort_objects"] # Original complementary data is also modified (current behavior) - assert original_comp_data["task"] == ["sort_objects"] + assert original_comp_data["task"] == "sort_objects"