From 2a4c53a283eddbc0e50693e8ed117634aa2007cf Mon Sep 17 00:00:00 2001 From: WenjinXie Date: Thu, 30 Jul 2026 20:39:28 +0800 Subject: [PATCH] [test][python] Fix Action deserialize tests on release branch Use the release-0.3 listen_event_types field in the cherry-picked Action config deserialization tests. Co-Authored-By: Codex AI-Model: gpt-5 AI-Contributed/Feature: 0/0 AI-Contributed/UT: 4/4 --- python/flink_agents/plan/tests/test_action.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/flink_agents/plan/tests/test_action.py b/python/flink_agents/plan/tests/test_action.py index 9d9045c8a..8d0793e86 100644 --- a/python/flink_agents/plan/tests/test_action.py +++ b/python/flink_agents/plan/tests/test_action.py @@ -136,7 +136,7 @@ def test_action_deserialize_python_config_propagates_reconstruction_error() -> N "module": "flink_agents.plan.tests.test_action", "qualname": "legal_signature", }, - "trigger_conditions": ["_input_event"], + "listen_event_types": ["_input_event"], "config": { "__config_type__": "python", "broken": { @@ -162,7 +162,7 @@ def test_action_deserialize_python_config_preserves_plain_list() -> None: "module": "flink_agents.plan.tests.test_action", "qualname": "legal_signature", }, - "trigger_conditions": ["_input_event"], + "listen_event_types": ["_input_event"], "config": { "__config_type__": "python", "hosts": ["host-a", "host-b", "host-c"],