rawwar commented on code in PR #44170:
URL: https://github.com/apache/airflow/pull/44170#discussion_r1855192203


##########
tests/api_fastapi/core_api/routes/public/test_dag_run.py:
##########
@@ -432,6 +469,333 @@ def test_invalid_state(self, test_client):
         )
 
 
+class TestListDagRunsBatch:
+    @staticmethod
+    def parse_datetime(datetime_str):
+        return datetime_str.isoformat().replace("+00:00", "Z") if datetime_str 
else None
+
+    @staticmethod
+    def get_dag_run_dict(run: DagRun):
+        return {
+            "run_id": run.run_id,

Review Comment:
   Once https://github.com/apache/airflow/pull/44305 is merged, I need to take 
changes and update tests



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