SameerMesiah97 commented on code in PR #71802:
URL: https://github.com/apache/airflow/pull/71802#discussion_r3866637165


##########
airflow-core/tests/unit/serialization/test_serialized_objects.py:
##########
@@ -272,6 +277,48 @@ def equal_serialized_asset(a: SerializedAssetBase | 
BaseAsset, b: SerializedAsse
     return ensure_serialized_asset(a) == ensure_serialized_asset(b)
 
 
[email protected](
+    ("value", "expected"),
+    [
+        ("3", timedelta(seconds=3)),
+        ("10", timedelta(seconds=10)),
+        ("05", timedelta(seconds=5)),
+        ("0", timedelta(0)),
+        ("-5", timedelta(seconds=-5)),
+    ],
+)
+def test_serialized_variable_interval_resolve_valid(mocker, value, expected):

Review Comment:
   A new file has been created for these tests in under the path you suggested.



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