AryanK1511 commented on code in PR #54004:
URL: https://github.com/apache/airflow/pull/54004#discussion_r2251229117


##########
airflow-core/tests/unit/api_fastapi/core_api/routes/ui/test_dags.py:
##########
@@ -82,6 +82,10 @@ def setup_dag_runs(self, session=None) -> None:
             # Search
             ({"dag_id_pattern": "1"}, [DAG1_ID], 6),
             ({"dag_display_name_pattern": "test_dag2"}, [DAG2_ID], 5),
+            # Bundle filters
+            ({"bundle_name": "dag_maker"}, [DAG1_ID, DAG2_ID], 11),
+            ({"bundle_name": "wrong_bundle"}, [], 0),
+            ({"bundle_version": "1.0.0"}, [], 0),

Review Comment:
   Oh it seems that I messed up something while writing the tests. It's all 
fixed now and ready to review. 



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to