This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 54ed71f9b0 Fix failing main after merging serialization fix (#39845)
54ed71f9b0 is described below

commit 54ed71f9b079fc65428ba5349606e6b0f4e8cee4
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Sun May 26 13:49:35 2024 +0200

    Fix failing main after merging serialization fix (#39845)
    
    The #39288 clashed with another change and failed main
---
 tests/serialization/test_pydantic_models.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/serialization/test_pydantic_models.py 
b/tests/serialization/test_pydantic_models.py
index 22f09b68e4..522399d1fc 100644
--- a/tests/serialization/test_pydantic_models.py
+++ b/tests/serialization/test_pydantic_models.py
@@ -75,8 +75,11 @@ def test_serializing_pydantic_task_instance(session, 
create_task_instance):
 @pytest.mark.skipif(not _ENABLE_AIP_44, reason="AIP-44 is disabled")
 def test_deserialize_ti_mapped_op_reserialized_with_refresh_from_task(session, 
dag_maker):
     op_class_dict_expected = {
+        "_needs_expansion": True,
         "_task_type": "_PythonDecoratedOperator",
         "downstream_task_ids": [],
+        "next_method": None,
+        "start_trigger": None,
         "_operator_name": "@task",
         "ui_fgcolor": "#000",
         "ui_color": "#ffefeb",

Reply via email to