hussein-awala commented on code in PR #31866:
URL: https://github.com/apache/airflow/pull/31866#discussion_r1241253574
##########
tests/serialization/test_serde.py:
##########
@@ -264,14 +264,33 @@ def test_backwards_compat(self):
"__var": {
"__var": {
"uri": uri,
- "extra": None,
+ "extra": {"__var": {"hi": "bye"}, "__type": "dict"},
},
"__type": "dict",
},
}
dataset = deserialize(data)
assert dataset.uri == uri
+ def test_backwards_compat_airflow_252(self):
+ """
+ Ensure that the Xcom value encoded by Airflow 2.5.2 is getting decoded
by Airflow 2.6.
Review Comment:
I think you need to update this comment, since we have the same format since
2.4.3, you can just say < 2.6, wdyt?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]