jscheffl commented on code in PR #47264:
URL: https://github.com/apache/airflow/pull/47264#discussion_r1981146088


##########
tests/serialization/test_dag_serialization.py:
##########
@@ -981,11 +980,7 @@ def test_dag_params_roundtrip(self, val, expected_val):
         assert "params" in serialized_dag["dag"]
 
         if val and any([True for k, v in val.items() if isinstance(v, set)]):
-            with pytest.warns(
-                RemovedInAirflow3Warning,
-                match="The use of non-json-serializable params is deprecated 
and will be removed in a future release",
-            ):
-                deserialized_dag = SerializedDAG.from_dict(serialized_dag)
+            deserialized_dag = SerializedDAG.from_dict(serialized_dag)

Review Comment:
   And another ups. Thanks for finding. How could I over-look this... :-(



-- 
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]

Reply via email to