From ecaa85fee80cfec53265e1a70edbbb9a2869a828 Mon Sep 17 00:00:00 2001 From: Jed Cunningham Date: Mon, 16 Dec 2024 14:12:44 -0700 Subject: [PATCH] Fix python task context test - conf has been removed PR #44820 removed `conf` from task context, but these tests still expect it. --- providers/tests/standard/operators/test_python.py | 1 + 1 file changed, 1 insertion(+) diff --git a/providers/tests/standard/operators/test_python.py b/providers/tests/standard/operators/test_python.py index 2d2fe9e2c1611..79b0d3290774e 100644 --- a/providers/tests/standard/operators/test_python.py +++ b/providers/tests/standard/operators/test_python.py @@ -925,6 +925,7 @@ def test_virtualenv_serializable_context_fields(self, create_task_instance): "next_execution_date", "prev_execution_date", "prev_execution_date_success", + "conf", } else: declared_keys.remove("triggering_asset_events")